【轉】linux root使用者ifconfig報command not found

IT一族發表於2014-04-11

解決辦法:

方法一:

直接輸入su - 回車。就可以ifconfig了

方法二:

/etc/profile

      把下面if語句註釋掉:

      #path Manipulation

      if ["EUID"="0"]; then

      pathmunge /sbin

      pathmunge /usr/sbin

      pathmunge /usr/local/sbin

      fi

      修改為:

      #path Manipulation

      #if ["EUID"="0"]; then

      pathmunge /sbin

      pathmunge /usr/sbin

      pathmunge /usr/local/sbin

      #fi

      儲存。

在/etc/profile下面就是儲存網路配置的,/etc裡面是所有的系統配置檔案。

      當然,直接使用/sbin/ifconfig也可以進入。

相關文章