我无法apt-get install net-tools
;我收到错误
E:软件包 net-tools 没有安装候选。
与其他类似名称的问题不同,我使用的是 Ubuntu 20.04,并且无法使用网络故障排除工具来工作。apt
仍然能够列出存储库。我已经更新、升级、重新启动并在尝试后重复,但没有任何效果。
错误信息:
~$ ifconfig
Command 'ifconfig' not found but can be installed with:
sudo apt install net-tools
~$ sudo apt install net-tool
[sudo] password for jordan:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package net-tool
~$ apt-cache policy net-tools
net-tools:
Installed: (none)
Candidate: 1.60+git20180626.aebd88e-1ubuntu1
Version table:
1.60+git20180626.aebd88e-1ubuntu1 500
500 http://pg.archive.ubuntu.com/ubuntu focal/main amd64 Packages
答案1
s
您的命令中缺少最后一个:
sudo apt install net-tool
尝试
sudo apt install net-tools
反而。