2007-03-20, 12:05 AM
2007-03-20, 10:27 PM
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];
;)
2007-03-21, 02:15 AM
Great tip, will use :)
2007-03-21, 04:59 PM
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?
2007-03-21, 07:58 PM
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
2007-03-21, 08:24 PM
:)