Centos 5.8 安装后不能使用ifconfig

今天在VMware上安装了CentOs 5.8 后把网卡删了,之后添加上后发现ifconfig不能使用(之前没有用过)

出现问题表现为:

$ifconfig

-bash:ifconfig :command not found

查找ifconfig

$whereis ifconfig

ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz

说明有这个咚咚

$echo $PATH

/usr/kerberos/bin:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/home/pcname/bin

发现没有sbin

添加sbin

$su root

输入密码

#vi /etc/profile

在文件最后插入:

PATH=$PATH:/sbin

export PATH=$PATH:/sbin

保存退出(:wq!)

重新加载一下

#source /etc/profile

之后在敲ifconfig就ok了


你可能感兴趣的:(centos,ifconfig)