解决CentOS 6.5下command not found问题
时间:2015-10-16 10:57 来源:linux.it.net.cn 作者:IT
今天在打开centos系统的时候,突然全部命令都不能正常使用了,如:shutdown reboot ssh scp这些。全部都显示 command not found。
费解!!! 前几天还好好的。
找出配置文件 /root/.bash_profile进行修改:
1、进入root路径
2、.bash_profile是隐藏文件,用命令:ls -la 显示出来
3、vi .bash_profile 修改如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/sbin:/usr/bin:/usr/sbin
export PATH
unset USERNAME
4、保存并退出
5、直接断电关机重启(因为shutdown命令如果执行。所以直接关机),重启后问题解决!
(责任编辑:IT)
今天在打开centos系统的时候,突然全部命令都不能正常使用了,如:shutdown reboot ssh scp这些。全部都显示 command not found。 费解!!! 前几天还好好的。
找出配置文件 /root/.bash_profile进行修改:
1、进入root路径 2、.bash_profile是隐藏文件,用命令:ls -la 显示出来 3、vi .bash_profile 修改如下: # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin:/sbin:/usr/bin:/usr/sbin export PATH unset USERNAME
4、保存并退出 5、直接断电关机重启(因为shutdown命令如果执行。所以直接关机),重启后问题解决! (责任编辑:IT) |