Ubuntu 9.10: bash durch zsh ersetzen

Created:
Last Update:

Author: Christoph Stoettner
Read in about 1 min · 97 words

Fountain pen and a notebook

Photo by Aaron Burden | Unsplash

Nachdem die z-Shell einige nette Features bringt, die Bash noch nicht, bzw. nicht unterstützt, installiere ich die z-Shell für meinen Ubuntu-Benutzer als Default.

sudo apt-get install zsh

Eine gute Grundlage ist die zshrc von GRML .

<br /> # IMPORTANT: please note that you might override an existing<br /> # configuration file in the current working directory! ⇒<br /> wget -O .zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc<br />

Danach kann man mit zsh testen, ob der Befehl richtig ausgeführt wird. Als Abschluß setze ich die z-Shell als Default-Shell:

chsh -s /usr/bin/zsh username

Weiterführende Links zur z-Shell:

Author