I've heard many times this phrase:
Do not run application as root.
My question is, does any other user like Administrator which can perform administrative tasks using sudo count as root?
I've heard many times this phrase:
Do not run application as root.
My question is, does any other user like Administrator which can perform administrative tasks using sudo count as root?
A root privileged account in a Unix/Linux system is an account with read/write access in all parts of the system, able to modify essential system files, install or remove global applications etc.
When you are using the sudo command, you are assuming root privileges for the action that follows sudo. For example
sudo apt update && sudo apt upgrade
will enable your user account to assume root access necessary to update and upgrade components of your system. The && between the two actions means execute the second if the first has been successfully executed.
In conclusion, it's best to sudo only when necessary, to avoid possible system damage, especially if you are an inexperienced Linux user.
Everything can be repaired though :)
I hope I've helped you answer some questions.