Aug 2, 2006 #1 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.
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 Aug 6, 2002 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 Mar 20, 2001 8,475 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 Aug 15, 2002 422 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