在修改/etc/profile添加环境变量之后,通过source /etc/profile使其生效,结果系统命令都不能用了

  1. [root@localhost /]# vi /etc/profile
  2. -bash: vi: 未找到命令
  3. [root@localhost /]# ls
  4. -bash: ls: 未找到命令

然后通过/usr/bin/vi /etc/profile进入到文件中把刚才改的还原回去,和另一台服务器的文件对比了一下,一模一样的,但还是不行。

最后找到了一个export命令

  1. export PATH=/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin
  2. source /etc/profile

然后就可以用了。


感谢:参考