How to create a user with given password on SuSE from command line?
Does SuSE useradd
have the -p
option? That takes the password (albeit in encrypted form, but you should be able to generate that I think).
So useradd -p <crypt'ed password> <new username>
should do it I think