Page 1 of 1

Adduser

Posted: Tue Mar 09, 2004 6:27 pm
by -Natas-
How do I add a user? On debian it is just adduser but that does not work on Gentoox. Also how can I change the password on the gentoox user? Thanks in advance for any help with this. :)

Posted: Tue Mar 09, 2004 8:43 pm
by effbiai
man useradd

Posted: Tue Mar 09, 2004 11:23 pm
by nobspangle
and you'll want
man passwd
to learn how to change passwords

Posted: Wed Mar 10, 2004 9:56 pm
by -Natas-
Thanks for the info...... :)

Still can't get it to work though, I must be too stupid or something. :?

Posted: Wed Mar 10, 2004 11:01 pm
by nobspangle
to add a normal user you'll want something like

Code: Select all

useradd username -m -G users,wheel,audio -s /bin/bash
then to set their password (or to change someone elses)

Code: Select all

passwd username

Posted: Thu Mar 11, 2004 6:47 am
by -Natas-
Thanks..... :)