这里有最新的使用文档和教程
Debian用不了netstat怎么解决?
只需要执行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命令,如果使用这些命令报错,可以尝试安装。