3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Linuxでいきなりcdやlsなどのコマンドが使えなくなった

Posted at

はじめに

Fultterの環境構築をしているときに.bashrcのスワップファイルがあるという忠告を受けたので編集して適応したらいきなりコマンドが使えなくなって困ったのでまとめます

問題

lsコマンドをしたところ以下のエラーが出るようになりました

$ ls
コマンド 'ls' は以下の場所で利用できます
 * /bin/ls
 * /usr/bin/ls
'/usr/bin:/bin'がPATH環境変数に含まれていないためコマンドを特定できませんでした。
ls: コマンドが見つかりません

解決方法

以下のコマンドで解決しました

echo 'export PATH=$PATH:/bin:/usr/bin' >> ~/.bashrc
source ~/.bashrc

何かのタイミングでパスが変わってしまったようでした
治ってよかった、、

おわりに

Linuxコマンドが使えなくなって焦りました
また調べてもすぐに記事がみつからなかったのも意外でした

3
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?