up vote 1 down vote favorite
share [g+] share [fb]

Possible Duplicate:
How do I make Bash my default shell on Ubuntu?

I want to change my default shell in Ubuntu to ZSH. What's the command to do this?

link|improve this question
1  
zsh is a shell, not a terminal. – grawity Dec 9 '11 at 8:03
feedback

closed as exact duplicate by akira, grawity, Nifle, Tom Wijsman, techie007 Dec 10 '11 at 1:30

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

3 Answers

up vote 5 down vote accepted

Use

chsh -s /bin/zsh

Unlike adduser or useradd or editing /etc/passwd, this will allow you to change your shell without having root rights.

link|improve this answer
feedback

You would have to edit your /etc/passwd

Use the vipw command and change the shell next to the user you want to change. To make it the default for all new users useradd -D -s /bin/bash

link|improve this answer
feedback

hum ... zsh is a shell, not a terminal.

An alternative answer to MrStatic's is using change the default shell with chsh, this can be done for your account without any root privileges.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.