web-dev-qa-db-fra.com

Installer zsh dans Ubuntu 18.04

J'ai mis à jour vers Ubuntu 18.04 et j'ai essayé d'installer zsh. Je suis passé par toutes les méthodes, et suis capable de l'utiliser, bien que lorsque j'essaye d'installer Oh My Zsh , il commence à courir et a ensuite une erreur:

Zsh not installed! Install zsh first.

J'ai utilisé cat et tout pour confirmer qu'il est bien installé (évidemment, parce que je l'utilisais?). Qu'est-ce que je fais de travers?

6
Matt Birtwistle

ohmyzshnécessite l’installation de zshShell.

Le problème est expliqué en détail ici.

Une solution consiste à installer d'abord zshname__, à passer au shell zsh, puis à obtenir et à exécuter ohmyzshde la même manière que vous le faisiez auparavant.

Exemple d'utilisation de wgetname__:

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

ohmyzshsignalera qu'il a été installé avec succès avec cette sortie ou une sortie similaire:

--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.

Si vous souhaitez changer de coque, vous pouvez le faire en lançant les commandes

chsh -s `which zsh`
Sudo reboot

Le redémarrage peut ne pas être nécessaire, vous pourriez probablement vous déconnecter puis vous reconnecter.

Pour revenir au shell par défaut, lancez la commande

chsh -s /bin/bash

Sources:

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

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

man chsh

9
Elder Geek