知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux Command not Found问题解决

发布时间:2014-09-05 15:46:58作者:知识屋


Linux Command not Found问题解决
 
修改/etc/profile文件,注释掉if语句即可。
把下面的if语句注释掉: 
 
# Path manipulation 
if [ "$EUID" = "0" ]; then 
pathmunge /sbin 
pathmunge /usr/sbin 
pathmunge /usr/local/sbin 
fi 
  www.zhishiwu.com  
修改为:
# Path manipulation 
# if [ "$EUID" = "0" ]; then 
pathmunge /sbin 
pathmunge /usr/sbin 
pathmunge /usr/local/sbin 
#fi 
 
注:不光是ifconfig命令出现“bash: ifconfig: command not found”,原因非root用户的path中没有/sbin/ifconfig 
,其它的命令也可以出现这种情况,解决的方法是一样的。
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜