Highlight Your Shell Prompt When Working as Root
April 14th, 2008 by Mitch Frazier in
A useful thing that some distros have started doing is setting the color of your shell prompt differently if you're logged in as root. This gives you an additional visual cue that helps avoid doing things as root when you don't want to. If your distro doesn't do this for you, you can accomplish it by changing your .bashrc files. To set the color of your shell prompt you set the shell variable PS1.
To make the prompt red when you're running as root add this to /root/.bashrc:
PS1="\[\e[31m\]\h:\w#\[\e[m\] "
To make the prompt green when running as a normal user add this to ~/.bashrc:
PS1="\[\e[32m\]\u@\h:\w\$\[\e[m\] "
See the shell man page and search the web for ANSI Escape codes for more info on the meaning of the escape sequences.
In the image below the top shell window is a normal user, the bottom one is a root window.
Related Articles
- Safely Running Programs as root by Phil Hughes
- Extending the Bash Prompt by Giles Orr
- Best of Technical Support by LJ Staff
Mitch Frazier is the System Administrator at Linux Journal.
Subscribe now!
Breaking News
| Charter Trades Privacy for Pocketbook | 18 hours 17 min ago |
| SSL Glitch Unlocks Debian, Ubuntu, & Others | 1 day 17 hours ago |
| MySpace Cashes in Spam to the Tune of $234 Million | 1 day 19 hours ago |
| Google Shoos the Trustbusters Away | 2 days 16 hours ago |
Featured Video
Linux Journal Gadget Guy, Shawn Powers, takes us through installing Ubuntu on a machine running Windows with the Wubi installer.
Delicious
Digg
Reddit
Newsvine
Technorati






Thanks
On April 17th, 2008 Arijit (not verified) says:
Thanks for this useful information.