What is the root user?
AKA the root account
AKA super user
The user name or account that by default has access to all commands and files on a Linux or other Unix-like operating system.
the super user—it can read, write, and delete any file.
Note: The term root for the all-powerful administrative user may have arisen from the fact that root is the only account having write permissions (i.e., permission to modify files) in the root directory.
what is /root (pronounced slash root)?
The root user’s home directory.
/root is a subdirectory of the root directory, as indicated by the forward slash that begins its name, and should not to be confused with that directory.
Home directories for users other than root are by default created in the /home directory, which is another standard subdirectory of the root directory.
what are Root privileges?
The powers that the root account/root user/super user has on the system.
The root account is the most privileged on the system and has absolute power over it (i.e., complete access to all files and commands).
Among root’s powers are the ability to modify the system in any way desired and to grant and revoke access permissions (i.e., the ability to read, modify and execute specific files and directories) for other users, including any of those that are by default reserved for root.
what is a rootkit?
a set of software tools secretly installed by an intruder into a computer that allows such intruder to use that computer for its own, usually nefarious, purposes when desired.
Well designed rootkits are able to obtain root access (i.e., access to the root account rather than just to a user account) and to hide most or all traces of their presence and activities.
what command lets you switch to the root user account at any time?
su -
what command lets you perform actions that require root privileges?
sudo [command]
what are the reasons for using sudo instead of just logging in as root?