Can I create another root user account in Linux / UNIX?
Q . I’d like to create my root account in Linux. How do I do it?
A . Root user is superuser on a Unix / Linux system. Root user has all rights or permissions. . The root user can do many things an ordinary user cannot do on system such as start / stop services, grant / revoke any permissions, open ports (especially
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
🐧 Get the latest tutorials on Linux, Open Source & DevOps via
Category | List of Unix and Linux commands |
---|---|
Documentation | help • mandb • man • pinfo |
Disk space analyzers | df • duf • ncdu • pydf |
File Management | cat • cp • less • mkdir • more • tree |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Linux Desktop Apps | Skype • Spotify • VLC 3 |
Modern utilities | bat • exa |
Network Utilities | NetHogs • dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop |
Searching | ag • grep • whereis • which |
Shell builtins | compgen • echo • printf |
Text processing | cut • rev |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Comments on this entry are closed.
In general when a response is label A for answer, the response will actually answer the question
Who can I change the root account Passward what was created at the time of installation.
I know the existing passowrd but I need to chenge it for security.
hai , root user will have the permission to change the root passwd
its simple and very easy. just type the command “passwd” space the “username.”
then enter it will ask for new password… tats it..
SYNTAX: [root@server1
]# passwd root
Changing password for user root.
New UNIX password:
BAD PASSWORD: it is based on a dictionary word
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
so how do i do it, i know its a security risk just how do i do it.
Yes you can create another account who will have the same power as root user,
It very much simple in most of Linux OS.
User the command ,
#useradd -ou 0 vikas
#passwd vikas
After this user(vikas) will work as root user
You are very good in linux. I have read your shell scripting tutorials also.
good work.
All the best,
Praveen
pls mail ur shell scripting tutorials
Really helpful, kindly send the links of your tutorial.
Thanks vikas, Its a cool command, There are bunch of ediots wrting tens of pages to do this and finaly nothing happens. Keep up the good work.
If you haven’t found an answer yet:
useradd -G root newuser
passwd newuser
id newuser
thankw
it works
Thanks for sharing you saved me alot of needless waste of time.
when installing Linux the system will not let you create a user called “root” because it already exists. You can create a user like localadmin or use your own name. Give it a password then after the installation is finished you can change root’s password by typing sudo passwd root
it asks you for new password twice. and then after that you can log in as root.
you can always change users password by using sudo passwd username. but if you want to be root you have to log in as yourself then do a su
then put roots password in. after that you wont have to sudo every time.
it is all for your benefit because you dont want to re-format and reinstall every time you make a mistake (as root) it is too dangerous.
I am a new user of linux OS Ubuntu and am trying to login as root. I can’t do so because I don’t know the root password. I was only asked for one password on installation and that does not work with root. Can someone help?
if ur normal user you will not allow to enter in to root previleges
OK I am new too so experts can correct me if I am wrong!…but this is my experience…. the ubuntu 8.04 workstation version and gdm (the gnue GUI/windows) will not allow you to log in as root or privileged user…but before that when you first log in, use whatever name you created to get in the system.
then if you are in the GUI open up a terminal (comand line) and do a
sudo passwd root
and set a password for the root user.
then you can either use the command su to get in as root or login as root (before you get in the GUI).
The root is automatically created when you install the system but it is not activated until you setup a password for it.
you have to be patient bcs the first time you have to put your password whenever you use sudo then after that you’ll enter root’s new password twice then after that its easy bcs whenever you login as root you only use the new password once.
You can use xdm instead of gdm to be able to log in as the root. gdm/kdm will not allow you to do that tho.
any way root user is too dangerous.. it has precedence even over the operating system so be careful with it.
To satisfy both the security problems and your wish to have your own unique root user:
usermod –login newusername root
This changes the root user to whatever you want AND strengthens the security at the same time as noone can brute force the COMMON root user anymore. In order you add a DUPLICATE “root” user and sustain the same permissions, you must change the account to –non-unique so that two accounts can share the uid “0” and gid “0”. Linux is ignoring me when I use this command and I don’t know why; so, for now just change the login name. Please post if you figure out how to get linux to accept the –non-unique using usermod command.
Also, SU command will no longer work without defining your new username you choose once you do this; I don’t see this as a big problem and it again increases the security.
I did not know about usermod command.
I know tho the only GUI program that actually allows you to log on as root is xdm.
kdm and other xwindows prog. like gdm will not allow root to log in.
regards;
can anyone help me ?
how to set bandwidth on ip address in linux (downloading).
using neat command u will get option over there
to change the speed of network card you can use ifconfig
like
ifconfig eth0 up mtu 1500
mtu 1500 is the max speed
you can use 1200 or less if you wanted to
up means to enable the nic.
Actually, the mtu is not bandwidth or NIC speed. You don’t want to mess with that unless you are changing a NIC to enable jumbo framing.
actually my friend has created rootuser while installing but after two days i want to change that .Thatswhy i went to first system settings i changed the password like user name :jyotshna,password:jyotshna. Now iam not able to enter in to system throughlike super user.while iam trying do that it is showing root is changed as home directory .
how to create super user
super user bis nothing but root user
First, as an infosec professional I completely agree with the additional security benefits and best practices SUDO provides.
However, the self-proclaimed experts who repeatedly belch forth the tired “I-know-how-but-I’m-not-going-to-tell-you-so-go-learn-SUDO-&-sudoers” mantra are the same individuals who post explicit command-line configurations for complex OS & service installations or modifications INCLUDING THE SUDO command, without considering that newbies are simply copying & pasting these commands into their installations without understanding ANY of the risks or the increased attack surface the changes may be creating. Such behavior creates MORE security issues than sharing the information to allow a user to create alternate root accounts.
**Before using the following commands, it is your responsibility to understand the ramifications of creating and using a root-level account. Use may result in a security compromised system or you may render your system COMPLETELY UNUSABLE.
** You agree by using the information contained herein that any negative impact or results to any system, data or network are entirely your responsibility.
Create additional root-level accounts by running these commands from a terminal session:
> sudo su
> useradd -G root
> passwd
> id
(you should see something similar to: uid=1001(newusername) gid=1001(newusername) groups=0(root)
> usermod -o -u 0 -g 0
(in the usermod command string, the first switch is the letter “O”. The characters following the -u and -g switches are each “zero”)
> id
(now you should see something similar to: uid=0(root) gid=0(root) groups=0(root)
I suggest bouncing your system prior to logging on with the newly created root-level user account.
These commands work well in most main stream *nix and BSD distributions. Use them wisely.
Thanks darkrift2012. Most *nix vets don’t even seem to be able to understand the question.
I have a problem in regards to root. I have a windows virus in linux weird but true! the problem is it’s in root on my linux distro and i’m sure its using wine to activate the virus. Would i need to worry as it can’t move around like in windows. Can’t do anything with it do you have any ideas?
i cant able to add new user from root.. its saying that useradd command not found.. now wat i have to do?
how to give root permission to normal user
I think you have to be root in order to add user.
so log in with your user name and then type su then hit enter then put in the root password.
then the commands will work.
Oh BTW, if this is the first time you set up linux what you can do is to log in as regular user (bcs it will not allow you to create root at the install, since its already there…) then do a passwd root to set a new password for the root, then you can log on as root user or do the su or sudo commands.
Darkrift2012 has an excellent post above as well.
how can i stop/start a services in /etc/init.d/ using an ordinary user account?
how do you make a user a sudoer
how to install image on ubantu
Root is a secret….
Because PC’s have a 99% chance of getting physically stolen where cruel punishment can take place, which could include:
1. Drop from a 3rd story window
2. Electrify your cat Squiggles while its taking a bath
3. Mysterious strangers using your backspace key as if its a pound key repeatedly
4. Because grany loves peaking at your special artwork
5. Because being root makes you feel important
6. Aunt Jemima and her secret service of highly trained ninjas
i want to create a new user in fedora linux
but that permission was denied while using the command USERADD.
how to grant the permission to create a new user?
please its urgent
oops made a comment but in the wrong place, I think.
I hope su works.
did you use sudo before useradd?
or as I do I just type in su and then the password then I get the new shell which I am the root, then I can do whatever. then I type exit to get out of root and go back to my user.
How can I set Privileges to created user in centos?
I created a root user name but could not login with the password I provided. How do I recover my password or how do I go about logging-in?
Источник
How to Give Root Privileges to a User in Linux
The “root” super user is the king of users in Linux/Unix. Having root access grants full and unlimited access to the Linux box.
In this tutorial, I will show you how to allow root access to a user in a Linux system. Typically, root level access is used in system administration. So it is always a pain to give root access to other users. You need to be careful and should withdraw the access once the need to do so is over.
According to Linux file system permissions, root or super user has full permission to read(r), write (w) and execute(x) any file. By default root user id is ‘0’.
I am going to create two users namely user1 and user2. Then I will show you how to give root access to ‘user1’.
Method 1: Adding to Root Group using usermod
Let see how we can grant normal user root access by adding to root group.
These are the groups I have in my Linux box.
I am going to add user1 to root group as follows:
The command given below provides the existing user with the root privilege
Method 2: Adding to Root Group using Useradd Command
I have added a new user, ‘user3’ to the root group using one single command:
Another option using useradd command
Method 3: Editing /etc/passwd file
Edit /etc/passwd for the particular user. Change the user’s UID and GID to ‘0’. This will give root permissions to user.
Now, temproot user should have root privilege:
Note: This is not the recommended method for granting root access
Method 4: Setting as Sudo User
The sudo configuration file is /etc/sudoers and you can edit this file using visudo command: # visudo.
Using visudo protects from conflicts and guarantees that the right syntax is used.
To give full access to specific users
Add the entry given below in the file:
Following this method is not a good idea because this allows both bob and tom to use the su command to grant themselves permanent root privileges. Thereby skipping the command logging features of sudo.
Granting access to specific files to one particular user
This entry allows bob and all the other members of the group operator to gain access to all the program files in the /sbin and /usr/sbin directories, as well as the privilege of running the command /usr/oracle/backup.pl.
If you have any questions or thoughts to share on this topic, use the feedback form.
Источник