-1

How to add a new user in Ubuntu 12.04, and how i give them a root user privileges

guntbert
  • 13,134
Naveen
  • 321
  • Server or desktop? And this will have been asked before ... See... http://askubuntu.com/questions/132186/create-a-new-user-in-12-04?rq=1 – Rinzwind Apr 02 '13 at 13:04

1 Answers1

2

With 12.04 and later

If the user already exists

sudo  usermod -aG sudo <username>

To create the user

adduser <username> --group sudo 

replace username with the name of the user and remove < >

Stormvirux
  • 4,466
Warren Hill
  • 22,112
  • 28
  • 68
  • 88