Linux /etc/profile配置错误如何处理

前言

修改/etc/profile 配置文件方法后,导致 bash 命令无法用。

1
-bash: ls:command is not found

解决

通过 vi 命令修改

1
/bin/vi  /etc/profile

若存在备份,直接通过备份还原

1
/bin/cp /etc/profile.bak /etc/profile

执行生效

1
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
1
source /etc/profile