没有ifconfig命令
Posted roadwide
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了没有ifconfig命令相关的知识,希望对你有一定的参考价值。
因为系统不支持ifconfig命令(用ip addr代替了),但有些脚本还需要这个命令,所以需要安装。
sudo apt-get install net-tools
查看ifconfig安装目录
# whereis ifconfig ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz
此时还不能调用ifconfig,需要给ifconfig
起个别名或者添加环境变量。
alias ifconfig=‘/sbin/ifconfig‘
或者
vim /etc/profile
#在末尾添加
export PATH=/sbin:$PATH
更新环境变量的命令:
source /etc/profile
以上是关于没有ifconfig命令的主要内容,如果未能解决你的问题,请参考以下文章