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!

UNIX - create a system user

Status
Not open for further replies.

saadabc

Programmer
Aug 5, 2004
107
US


How do I create a system user in UNIX.

is it done using the useradd command.

how do I specify that it is to be a system account.



 
What do you mean by 'system account'? If it's root equivalent, it's not a good idea.

All I ask of you
Is make my wildest dreams come true
 
Assuming the user already exists now:

To add a primary group:

usermod -g <group> username


To add associated groups:

usermod -G <groupA> <groupB> <groupC> username
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top