Linux系统提示-bash:ls:command not found

Linux系统提示-bash:ls:command not found

问题现象:

执行任何基本命令都提示command not found,如图:

问题原因:

由于系统环境变量异常导致的。

解决方法:

永久生效方式:

更改为正确的环境变量,使用绝对命令vi打开/etc/profile

vi /etc/profile

添加:

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

临时生效方式:

直接执行

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

标签

发表评论