Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

USERADD

Status
Not open for further replies.

armylogman

Technical User
Feb 16, 2005
34
US
Can I add a user from a remote location or can I create a scrip and run it at the server from a remote location to add


Thanks in advance for the help

 
Look at "man useradd" for all the details. Scripts are possible. Basic command is:

useradd -u #### -g #### -m -d /export/home/username -s /bin/csh <username>

-u - user id
-g - group id
-m - create home directory
-d - home directory
-s - default shell

 
Thank you this helps a lot I don't do many scripts just got started with Solaris

Thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top