Make Ubuntu Stay in Root Mode
Instead of having to constantly type in 'sudo' every time you need to make an admin change, you can use one of these commands to act as root.
To switch to full root mode:
sudo -s -H
To switch to using root mode, but still act as your user account:
sudo -s
The Geek is the founder of How-To Geek and a geek enthusiast. This article was written on 09/11/06 and tagged with: Ubuntu, SysAdmin


This is always good, if you are familiar with System Administration and you should know what you are doing
Good to know! In Fedora you would just do:
su -
:)
You could also sudo bash which will keep you in root mode until you close the terminal window
This one does the job, too:
sudo su
Actually, joe, that doesn't quite do the trick.
sudo su - root
is the proper way to do it. Seriously though. An entire post on switching to root? Really?