无法通过 apt-get 安装软件包

无法通过 apt-get 安装软件包

我遇到这种错误:

root@ubuntu-pc:~# reaver
The program 'reaver' is currently not installed. You can install it by typing:
apt-get install reaver

root@ubuntu-pc:~# sudo apt-get install reaver

Reading package lists... Done

Building dependency tree       

Reading state information... Done

E: Unable to locate package reaver

root@ubuntu-pc:~#

答案1

确保software-properties-gtk宇宙存储库已检查(或者,您可以检查/etc/apt/sources.list以验证您是否拥有宇宙存储库已启用)。 然后运行sudo apt-get update

您可以使用 来验证该包是否存在apt-cache policy reaver,它应该给出如下输出,

reaver:
  Installed: (none)
  Candidate: 1.4-2
  Version table:
     1.4-2 0
        500 http://us.archive.ubuntu.com/ubuntu/ raring/universe amd64 Packages

向您展示宇宙存储库现已可用。现在您应该能够sudo apt-get install reaver

否则,这次你安装的可能是 12.10 之前的版本(也许是 12.04?)。查看启动板页面,我只看到 12.10 及更高版本的版本:https://launchpad.net/ubuntu/+source/reaver

相关内容