How can I create a user on Ubuntu with the same permissions as the initial user?

2

I want to create a user account on an Ubuntu Lucid system that has the same permissions as the original user account that was created during the install process. How can I do this? Imaginary bonus points for a command-line solution, but I'll accept a graphical solution as well.

Ryan C. Thompson

Posted 2010-07-27T01:04:24.740

Reputation: 10 085

Answers

4

Use the adduser command to create a new user, with the groups from this question.

sudo adduser {username} adm,dialout,cdrom,floppy,audio,dip,video,plugdev,scanner,netdev,lpadmin,powerdev,admin

Gelatin

Posted 2010-07-27T01:04:24.740

Reputation: 415