OS : mac
https://sunnyday-travel-aso-6487.ssl-lolipop.jp/programing/django/xserver/
を参考にして、エックスサーバーにてlinuxbrewをインストールしようとしています。
terminal
1〜ダウンロードフォルダに移動〜 2cd download 3〜.sshディレクトリの作成〜 4mkdir ~/.ssh 5〜ダウンロードしてきたファイルの移動〜 6mv ~/Downloads/(ダウンロードしたファイル).key ~/.ssh/ 7 8cd ~/.ssh/ 9〜名前の変更〜 10mv (ダウンロードしたファイル).key ~/.ssh/id_rsa 11〜パーミッションを変更〜 12chmod 700 ~/.ssh 13chmod 600 ~/.ssh/id_rsa 14〜SSH接続〜 15ssh -l [サーバーID] -p 10022 [サーバーID].xsrv.jp 16 17〜これでbashの表示が公開キーの含まれたものになっているはずです〜 18〜つまりSSH接続中ということ〜 19〜この上でLinuxbrewをインストールします。〜 20 21〜Linuxbrewのインストール〜 22sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
この最後の行を実行しようとすると、以下の文が出ます。
terminal
1[サーバーID@xxxxxxx ~]$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" 2Warning: Linuxbrew has been merged into Homebrew. 3Please migrate to the following command: 4 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 5 6Git that is available on your system does not satisfy Homebrew requirements. 7Please install Git 2.7.0 or newer and add it to your PATH. 8
このエラー文内の以下文章を実行しても同じようなエラーが繰り返しでます。
terminal
1/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
どのような文章を実行すればLinuxbrewのインストールが成功するかご教授いただきたいです。
あなたの回答
tips
プレビュー