Aug 2, 2006 #1 saadabc Programmer Joined Aug 5, 2004 Messages 107 Location 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.
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.
Aug 2, 2006 #2 sedj Programmer Joined Aug 6, 2002 Messages 5,610 google 'useradd' or type 'man useradd' . http://www.computerhope.com/unix/useradd.htm Not sure what you mean by 'system' account - but you can specify what group the user should belong to ... -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
google 'useradd' or type 'man useradd' . http://www.computerhope.com/unix/useradd.htm Not sure what you mean by 'system' account - but you can specify what group the user should belong to ... -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
Aug 3, 2006 #3 KenCunningham Technical User Joined Mar 20, 2001 Messages 8,475 Location GB 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 Upvote 0 Downvote
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
Aug 3, 2006 #4 ProbablyDown MIS Joined Aug 15, 2002 Messages 422 Location US 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 Upvote 0 Downvote
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