Linux-Noob Forums

Full Version: Adding new users the easy way
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So far the easiest way to add users is in a terminal and use the useradd -m login name then to set the password you use the passwd login name

Yeah .. its the easy method by far :)

 



Code:
# useradd -d /home/$1 -m -k /etc/skel -g users -G audio,video -s /bin/bash $1




 

That's what I use, please note this isn't perfect for all systems, some might not have the groups I add.

 

Also when I'm setting up accounts (multiple) I normally use the -p option to allow me to set a default password.

 



Code:
# crypt.pl somewonderfulpassword
eBX9jzU8Bjlmo
# useradd -p eBX9jzU8Bjlmo ...... etc .... $1




 

The crypt.pl is a nice simple bit of perl:



Code:
#!/usr/bin/perl -l
$password = shift;
@salt = ('.', '/', 0 .. 9, 'A' .. 'Z', 'a' .. 'z');
print crypt $password, join '', (@salt)[rand 64, rand 64];




 

;)

Great tip, will use :)

Yo znx,

 

Nice tips, however don't you think: # crypt.pl somewonderfulpassword is abit insecure

as this will be logged in the .bash_histroy if your using bash?


Well what I did there was an example, normally I do all that from a script, where $1 is the input ...



Code:
# useradd -p `crypt.pl $1` .... $1




 

So simply setup an account with user/pass the same .. :)Also if you are doing this as root (which I'd assume you are) then you would be in control of the account as it was and able to reset the password to anything you wanted! eheh

:)