Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Adding new users the easy way
#1
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
Reply
#2

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];




 

;)

Reply
#3
Great tip, will use :)
Reply
#4

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?

Reply
#5

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

Reply
#6
:)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)