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 an Associate Editor for Linux Journal and the Web Editor for linuxjournal.com.
Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Jul-01-09
- Jun-29-09
Recently Popular
From the Magazine
July 2009, #183
News Flash: Linux Kernel 3.0 to include an on-the-go Expresso machine interface! Ok, maybe not, but Linux is definitely going mobile, from phones to e-readers. Find out more inside about Android, the Kindle 2, the Western Digital MyBook II, The Bug, and Indamixx (a portable recording studio). And if you've gone mobile and you been wanting more Emacs in your life then check out Conkeror.
To compliment the mobile we've got the stationary: parsing command line options with getopt, checking your Ruby code with metric_fu, and building a secure Squid proxy. How is this stationary you ask? What can we say? It's not. We just wanted to see if anybody actually read this part of the page :) .
All this and more, and all you have to do is get your hot sweaty hands on the latest copy of Linux Journal.
Delicious
Digg
StumbleUpon
Reddit
Facebook








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