コマンドを実行しようとすると、「 '/usr/bin'がPATH環境変数に含まれていないため、コマンドが見つかりませんでした」というエラーが発生します。

コマンドを実行しようとすると、「 '/usr/bin'がPATH環境変数に含まれていないため、コマンドが見つかりませんでした」というエラーが発生します。

端末で実行しようとするとエラーが発生しますThe command could not be located because '/usr/bin' is not included in the PATH environment variable

例えば。

jeper@jeper:~$ clear
Command 'clear' is available in '/usr/bin/clear'
The command could not be located because '/usr/bin' is not included in the PATH environment variable.
clear: command not found

そしていいね

jeper@jeper:~$ vi
Command 'vi' is available in '/usr/bin/vi'
The command could not be located because '/usr/bin' is not included in the PATH environment variable.
vi: command not found

問題は何ですか?どうやって解決しますか?

ベストアンサー1

$PATHが空のようです。試してみてくださいecho $PATH。出力は次のようになります。

/usr/local/sbin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/root/bin

そうでない場合、またはコマンドを使用してユーザーを切り替える場合は、.bash_profile次に使用する必要があります。.bashrcsu usernamesu - username

おすすめ記事