ifconfig command not find
时间: 2023-11-03 14:21:18 浏览: 81
从ifconfig中得到IP地址
这可能是因为你的系统中没有安装ifconfig命令或者ifconfig命令不在系统的PATH环境变量中。你可以尝试使用以下命令来安装ifconfig命令:
在Debian/Ubuntu系统中,使用以下命令安装ifconfig命令:
```
sudo apt-get update
sudo apt-get install net-tools
```
在CentOS/RHEL系统中,使用以下命令安装ifconfig命令:
```
sudo yum install net-tools
```
安装完成后,尝试重新运行ifconfig命令,如果仍然无法找到该命令,请检查你的PATH环境变量是否包含了ifconfig命令所在的目录。
阅读全文