0
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 3 years have passed since last update.

xserverでコマンドが使えなくなってしまった時

Posted at

flaskを使いたくてssh接続したあとにターミナルで

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"

と打ったところ

-bash: curl: コマンドが見つかりません
-bash: ls: コマンドが見つかりません

のようなエラーが出てしまいました。

いろいろ調べていたら、
「コマンドが見つかりません」の直し方について
上のteratailの記事の通りに進めていったら使えるようになりました。ありがとうございます。

/usr/bin/vi ~/.bash_profile

で.bash_profileの中身を確認し、

PATH=$PATH:$HOME/bin
export PATHeval $(/home/XXXXX/.linuxbrew/bin/brew shellenv)

PATH=$PATH:$HOME/bin
export PATH
eval $(/home/XXXXX/.linuxbrew/bin/brew shellenv)

のように改行させたところ、lsとかのコマンドが使えるようになりました。

0
1
0

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
0
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?