Sunday, April 28, 2024
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 14819  / 2 Years ago, thu, january 20, 2022, 9:26:26

When I run the su command, the terminal returns:



user 'su' does not exist


How do I add the root user? Can anyone answer this? I tried sudo adduser su, but after this, I get the same problem.


More From » command-line

 Answers
6

You become root with sudo su (as an example). Or better said: you elevate your admin user to admin priviliges permanently until you exit. Example:


rinzwind@discworld:~$ sudo su
[sudo] password for rinzwind:
root@discworld:/home/rinzwind#

And no Ubuntu technically does not have an active root user. From the Ubuntu RootSudo wiki page:



In Linux (and Unix in general), there is a SuperUser named Root. The Windows equivalent of Root is Administrators group. The SuperUser can do anything and everything, and thus doing daily work as the SuperUser can be dangerous. You could type a command incorrectly and destroy the system. Ideally, you run as a user that has only the privileges needed for the task at hand. In some cases, this is necessarily Root, but most of the time it is a regular user.


By default, the Root account password is locked in Ubuntu. This means that you cannot login as Root directly or use the su command to become the Root user. However, since the Root account physically exists it is still possible to run programs with root-level privileges. This is where sudo comes in - it allows authorized users (normally "Administrative" users; for further information please refer to AddUsersHowto) to run certain programs as Root without having to know the root password.


This means that in the terminal you should use sudo for commands that require root privileges; simply prepend sudo to all the commands you would normally run as Root. For more extensive usage examples, please see below. Similarly, when you run GUI programs that require root privileges (e.g. the network configuration applet), use graphical sudo and you will also be prompted for a password (more below). Just remember, when sudo asks for a password, it needs YOUR USER password, and not the Root account password.



[#31150] Saturday, January 22, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
mance

Total Points: 198
Total Questions: 105
Total Answers: 128

Location: South Georgia
Member since Mon, Aug 16, 2021
3 Years ago
;