标签:etcprofile配置错误 command is not found
我的CSDN博客地址: http://blog.csdn.net/caicongyang
博主之前在修改了/etc/profile配置文件方法后,导致bash命令无法用
执行ls命令结果如下:
-bash: ls:command is not found
# source /etc/profile
-bash: id:command is not found
经过度娘提点,我们可以用命令重新这是PATH;
# export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
如果不幸的是你的profile配置文件没有备份,在直接使用vi命令无法使用的情况下,你可以在vi前面加上命令的地址
#/bin/vi /etc/profile
这样就可以使用vi命令来修改啦!
我的CSDN博客地址: http://blog.csdn.net/caicongyang
版权声明:本文为博主原创文章,未经博主允许不得转载。
Linux修改/etc/profile配置错误command is not found自救方法
标签:etcprofile配置错误 command is not found
原文地址:http://blog.csdn.net/caicongyang/article/details/46789329