Copyright 2024 HNCloud Limited.
香港联合通讯国际有限公司
Debian用不了netstat怎么解决?
时间 : 2023-04-20 10:04:17
编辑 : 华纳云
阅读量 : 173
只需要执行apt-get install net-tools 来安装net-tools工具就可以使用netstat 命令。
Debian系统默认是不带netstat等命令的,如果使用就会出现下面的错误提示
-bash: netstat: command not found
这在日常的运维中是很不方便的,所以可以尝试下面的解决方案
sudo apt install net-tools
#如果需要ping的话,安装如下软件
sudo apt install iputils-ping
低版本的Debian中可能不支持直接 apt ,而是需要 apt-get ,请自行修改上面命令中的 apt
net-tools包含arp, ifconfig, netstat, rarp, nameif and route命令,如果使用这些命令报错,可以尝试安装。