Root user
From Linux 101, The beginner's guide to all things Linux.
[edit] root
root is the almighty user on every Linux system. A user, by default, cannot modify anything system-wide or perform any actions on the computer. For example, a user by default cannot restart the network connection. Obviously this and many other actions would make using the computer for a normal user very hard. There are at least three ways to run a program as root root
- Login to the computer as
rootdirectly (bad idea) - Execute
su -as your normal user to switch to therootuser (better) - Execute
sudo <program>to runprogramwithrootaccess (best)
This article is a stub. You can help Linux 101 by expanding it.

