command ifconfig not found
时间: 2023-04-27 10:04:01 浏览: 98
Linux找不到ifconfig命令
5星 · 资源好评率100%
这个错误提示意味着您尝试运行"ifconfig"命令,但是您的系统无法找到该命令。
在最新的操作系统中,"ifconfig"命令已经被废弃,可以使用"ip"命令来替代它。如果您使用的是旧版本的操作系统,您可能需要安装"ifconfig"命令,以便能够使用它。
您可以尝试以下命令来安装"ifconfig":
- 在Debian/Ubuntu系统上:
```
sudo apt-get update
sudo apt-get install net-tools
```
- 在RedHat/CentOS系统上:
```
sudo yum install net-tools
```
一旦安装完成,您应该能够使用"ifconfig"命令了。
阅读全文