ubuntu ifconfig command not found
时间: 2023-05-01 10:03:35 浏览: 277
Linux找不到ifconfig命令
5星 · 资源好评率100%
这是因为在 Ubuntu 中,ifconfig 命令已被弃用,而被 ip 命令所替代。您可以使用以下命令来查看网络配置:
```
ip addr
```
或者,如果您仍想使用 ifconfig 命令,可以先安装它:
```
sudo apt-get update
sudo apt-get install net-tools
```
阅读全文