linux下执行常用命令出现:command not found
程序员文章站
2022-07-12 13:23:06
...
在 linux
下执行类似与 ls、ll、vim
等命令时出现 command not found
,并且执行 source /etc/profile
出现
bash: id: command not found
bash: tty: command not found
可能是因为 /etc/profile
下配置环境变量时出现了问题,例如:
export JAVA_HOME=/usr/local/share/java/jdk1.8.0_151
export PATH=$PTAH:$JAVA_HOME/bin
可以看到我把 $PATH
写成了 $PTAH
,导致了我的环境变量失效。
解决方案:使用下面的命令修改 /etc/profile
文件,然后断开 linux
连接,重新连接即可。
/bin/vi /etc/profile
推荐阅读
-
Linux下执行程序出现 Text file busy 提示时的解决方法
-
linux 执行 javac 报错 javac: command not found
-
linux下提示bash:command not found
-
Linux下执行程序出现 Text file busy 提示时的解决方法
-
Centos 执行命令出现 bash:$'\r': command not found
-
linux 下sh命令:command not found
-
linux下执行常用命令出现:command not found
-
Linux基本命令执行报错:command not found 的解决办法
-
linux常用命令command not found的解决方案(自己整理)
-
linux执行make命令时报错g++: Command not found