How to Add a User and Grant Root Privileges on Fedora 20

Step 1: Add the User

It’s just one simple command to add a user. In this case, we’re adding a user called mynewuser :

adduser mynewuser


Now set the password for the new user:

passwd mynewuser


Step 2: Grant Root Privileges to the User

visudo


Find the following code:

## Allow root to run any commands anywhere
root ALL=(ALL) ALL


In this case, we’re granting root privileges to the user mynewuser . Add the following below that code:

mynewuser ALL=(ALL) ALL


Then exit and save the file with the command:wq .

If you’ve followed the instruction above correctly, then you should now have a user setup by the name of mynewuserwhich can use sudo to run commands as root!

  • 111 Users Found This Useful
Was this answer helpful?

Related Articles

How to List Compiled PHP Modules from Command Line

Pre-Flight Check These instructions are intended specifically for listing compiled PHP modules...

How to Install or Uninstall PECL Extensions

Pre-Flight Check These instructions are intended specifically for installing or uninstalling...

How to Install the MongoDB PHP Driver (Extension) on CentOS 6

Step 1: Setup Environment, Install PHP Extension & Application Repository (PEAR) As a matter...

How to Add a User and Grant Root Privileges on CentOS 6.5

Step 1: Add the User It’s just one simple command to add a user. In this case, we’re...

How to Add a User and Grant Root Privileges on Ubuntu 14.04

Step 1: Add the User It’s just one simple command to add a user. In this case, we’re...