11

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?

damon
  • 502
  • 2
  • 5
  • 9

3 Answers3

20

Use

chsh -s $(which zsh)

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

Limon Monte
  • 103
  • 1
  • 5
raphink
  • 3,781
  • 2
  • 27
  • 32
0

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.

Ben
  • 149
  • 4
-1

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

Unfundednut
  • 7,070
  • 4
  • 28
  • 54