标签:需要 更新 ifconfig sudo col 别名 apt HERE vim
因为系统不支持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 sudo col 别名 apt HERE vim
原文地址:https://www.cnblogs.com/roadwide/p/12327545.html