无法在装有 Ubuntu 的 Raspberry Pi 4 上安装 hcxtools

无法在装有 Ubuntu 的 Raspberry Pi 4 上安装 hcxtools

我无法hcxtools在我的 Raspberry Pi 4 上安装 Ubuntu。

当我尝试安装它时,我收到以下信息:

# apt-get install hcxtools 
Reading package lists... Done 
Building dependency tree 
Reading state information... Done 
E: Unable to locate package hcxtools 

我的建筑:

$ uname -m
aarch64

答案1

您应该能够通过执行以下操作来安装该软件包:

手动下载最新的 Debian 软件包:

wget http://ftp.br.debian.org/debian/pool/main/h/hcxtools/hcxtools_6.0.2-1_arm64.deb

手动安装包:

sudo apt install ./hcxtools_6.0.2-1_arm64.deb

据我所知,所有依赖关系都应该没问题使其工作。

我已经对其他几个软件包进行了此操作,一切都运行正常。只需记住这些软件包必须使用上述方法手动更新。

答案2

E: Unable to locate package <name>意味着apt找不到该包。

您可能需要执行更新来刷新您的 repo 缓存:

sudo  apt -y update

然后使用已知包进行测试(可能已经安装):

sudo apt -y install lsof

相关内容