How do I change my current login shell from bash to ksh under Linux or UNIX or Apple OS X operating systems?
You need to use the chsh command to change the user login shell. This determines the name of the users initial login command. A normal user may only change the login shell for her own account, the superuser (root) may change the login shell for any account. /etc/passwd file stores your user account information including login shell. /etc/shells files list all valid login shells. So first make sure ksh is installed and valid login shell:
$ grep ksh /etc/shells
Sample outputs:
/usr/bin/ksh /bin/ksh /bin/pdksh
To change shell to ksh, enter:
$ chsh -s /bin/ksh
You need to enter your own login password to make shell change. Now, logout and login back again to use ksh as the default shell. You can verify your shell typing the following command:
$ grep "^username" /etc/passwd
$ grep "^vivek" /etc/passwd
Sample outputs:
vivek:x:6012:6013:Vivek Gite,,,:/home/vivek:/bin/ksh
A Note About Other User
The superuser (root) may change the login shell for any account using any one of the following syntax:
$ sudo chsh -s /bin/ksh username
OR
$ su -
# chsh -s /bin/ksh username
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 1 comment… read it below or add one }
If avaiable, try ‘chsh’ or edit /etc/passwd (root equivalent access required) in *nix.
For os x (assuming 10.6): Systems Preferences, [System] Accounts, make sure it’s not locked (lower left) or authenticate to unlock the ‘My Account’ list, right click on the account and select ‘Advanced Options…’