每个命令都在Rhel中返回错误

时间:2016-05-24 12:05:24

标签: linux bash ssh rhel rhel7

我使用SSH连接远程服务器。我做了一些安装,想测试它们是否在重启后启动。我用sudo reboot重启了机器。 SSH会话丢失了。我重新联系了。登录后,我输入的每个命令,无论是否有效,都会返回以下输出。

-bash: id: command not found
-bash: id: command not found
-bash: id: command not found
-bash: tty: command not found
-bash: uname: command not found
-bash: whoami: command not found
-bash: sed: command not found
-bash: logger: command not found

如何摆脱这种情况?

感谢。

1 个答案:

答案 0 :(得分:1)

你的path已经搞砸了,你必须阅读你所需要的任何东西。

这可以通过发出以下命令来完成

export PATH="$PATH:[directory to append to path]"

如果未找到命令,则此路径可能会让您走正确路径

export PATH="$PATH:/bin"

然而,这不会在重新启动时保持$PATH值,在这种情况下,需要编辑包含路径设置的系统文件。