web-dev-qa-db-ja.com

Ubuntu 18.04にzshをインストールする

Ubuntu 18.04にアップグレードし、zshをインストールしようとしています。私はすべての方法を試しましたが、am使用できますが、インストールしようとすると Oh My Zsh 、実行を開始してからエラーが発生します。

Zsh not installed! Install zsh first.

Catとすべてを使用して、実際にインストールされていることを確認しました(ただし、明らかにそれを使用していたためですか?)何が間違っていますか?

6
Matt Birtwistle

ohmyzshをインストールするには、zsh Shellが必要です。

この問題について詳しく説明します こちら

回避策は、最初にzshをインストールし、zshシェルに変更してから、以前と同じ方法でohmyzshを取得して実行することです。

wgetを使用した例:

Sudo apt install zsh
apt-get install git-core
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh

ohmyzshは、これまたは同様の出力で正常にインストールされたことを報告します。

--2018-05-08 18:44:07--  https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh
Resolving github.com (github.com)... 192.30.253.113, 192.30.253.112
Connecting to github.com (github.com)|192.30.253.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh [following]
--2018-05-08 18:44:07--  https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.44.133
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.44.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3941 (3.8K) [text/plain]
Saving to: ‘STDOUT’

-                                100%[==========================================================>]   3.85K  --.-KB/s    in 0s      

2018-05-08 18:44:07 (57.9 MB/s) - written to stdout [3941/3941]

Cloning Oh My Zsh...
Cloning into '/home/me/.oh-my-zsh'...
remote: Counting objects: 858, done.
remote: Compressing objects: 100% (721/721), done.
remote: Total 858 (delta 16), reused 780 (delta 10), pack-reused 0
Receiving objects: 100% (858/858), 572.49 KiB | 0 bytes/s, done.
Resolving deltas: 100% (16/16), done.
Checking connectivity... done.
Looking for an existing zsh config...
Using the Oh My Zsh template file and adding it to ~/.zshrc
I can't change your Shell automatically because this system does not have chsh.
Please manually change your default Shell to zsh!
         __                                     __   
  ____  / /_     ____ ___  __  __   ____  _____/ /_  
 / __ \/ __ \   / __ `__ \/ / / /  /_  / / ___/ __ \ 
/ /_/ / / / /  / / / / / / /_/ /    / /_(__  ) / / / 
\____/_/ /_/  /_/ /_/ /_/\__, /    /___/____/_/ /_/  
                        /____/                       ....is now installed!


Please look over the ~/.zshrc file to select plugins, themes, and options.

シェルを変更する場合は、コマンドを発行して変更できます

chsh -s `which zsh`
Sudo reboot

再起動は必要ない場合があります。ログアウトしてからログインし直す可能性があります。

デフォルトのシェルに戻すには、次のコマンドを発行します

chsh -s /bin/bash

ソース:

https://Gist.github.com/tsabat/149839

https://github.com/robbyrussell/oh-my-zsh/issues/227#issuecomment-82577

man chsh

9
Elder Geek