有些系统模板不自带ifconfig,我们想用的时候直接就ifconfig not found
。
yum/apt install ifconfig
肯定是不行的,因为这不是一个单独的软件包。
这时候,往下看吧。
CentOS
yum whatprovides
+命令
如:yum whatprovides ifconfig
yum whatprovides nslookup
Debian/Ubuntu
apt install -y apt-file && apt-file update && apt-file search bin/
+命令
如:apt install -y apt-file && apt-file update && apt-file search bin/ifconfig
apt install -y apt-file && apt-file update && apt-file search bin/nslookup