Linux 中 基础环境变量混乱后处理方法
001、问题
环境变量处理失误导致基础命令调不出来:
[root@PC1 ~]# ls bash: ls: command not found... Packages providing this file are: 'coreutils-single' 'coreutils'
002、应急方法
[root@PC1 ~]# export PATH="/usr/bin"
。
001、问题
环境变量处理失误导致基础命令调不出来:
[root@PC1 ~]# ls bash: ls: command not found... Packages providing this file are: 'coreutils-single' 'coreutils'
002、应急方法
[root@PC1 ~]# export PATH="/usr/bin"
。