Linux修改/etc/profile配置错误command is not found自救方法

Posted Archibald Witwicky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux修改/etc/profile配置错误command is not found自救方法相关的知识,希望对你有一定的参考价值。

我的CSDN博客地址: http://blog.csdn.net/caicongyang 

博主之前在修改了/etc/profile配置文件方法后,导致bash命令无法用

执行ls命令结果如下:

  1. -bash: ls:command is not found  


但是庆幸的是博主之前备份了/etc/profile,于是我把profile通过SSH还原回去,但是现在需要执行  

  1. # source /etc/profile  


让配置文件重新生效,然后不幸的事情是

  1. -bash: id:command is not found  


发现 source命令已经不认识!

经过度娘提点,我们可以用命令重新这是PATH;

  1. # export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin    


执行完以上的命令后,你可以重新执行 source /etc/profile命令来让你的配置文件生效

 

如果不幸的是你的profile配置文件没有备份,在直接使用vi命令无法使用的情况下,你可以在vi前面加上命令的地址

  1. #/bin/vi  /etc/profile  

 

这样就可以使用vi命令来修改啦!






以上是关于Linux修改/etc/profile配置错误command is not found自救方法的主要内容,如果未能解决你的问题,请参考以下文章

linux下修改环境变量问题

linux profile 在哪个目录

linux profile 在哪个目录

修改/etc/profile或者$HOME/.profile文件后如何立即生效?

source /etc/profile的深坑

Linux中无法保存profile文件