Adding user (useradd) in Solaris
Filed Under (Tips) by Mozammel on 04-06-2007
Tagged Under : solaris, useradd
A simple code to add new users in Solaris 10:
useradd -d /export/home/mozammel -m -s /bin/bash -c "Mozammel" mozammel
-d home directory path
-m make home directory and copy skeleton files
-s which shell to use
-c Full name

very good…
It works!
Thank you Mozammel, I’ve been getting hung up on this for the past day, the other pages don’t make it clear how to add a user.