![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX Desktop for Dummies Questions & Answers Questions regarding GNOME, KDE, CDE, Open Office, etc go here. All UNIX and Linux Newbies Welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Creating USERs with restricted Access | ramanan25 | UNIX for Advanced & Expert Users | 4 | 05-05-2008 08:05 PM |
| creating users | vishwaraj | HP-UX | 1 | 01-14-2008 04:30 AM |
| Creating Users with SMC | chaandana | UNIX for Advanced & Expert Users | 2 | 06-25-2007 10:45 PM |
| bash/awk scripting help (creating OLD new users) | Jukai | Shell Programming and Scripting | 2 | 10-17-2006 02:36 AM |
| Creating Users!!!! | ocpguy | UNIX for Dummies Questions & Answers | 1 | 12-04-2001 11:39 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Creating New Users in UNIX Machine !!!
Hi
How to create users in the UNIX machine .... I am the ROOT and i want to create users with normal privileges . a) Please give the sequence of commands which i need to use. b) How to set their userid and passwords |
| Forum Sponsor | ||
|
|
|
|||
|
Simple user
Code:
login as root adduser <username> -- this is sometimes useradd...you have to watch out depending on your flavour of unix passwd <username> -- change the passwd for the user you have just added More complex user Code:
login as root adduser <username> -c <comment> -d <home directory of user> -g <primary group of this user> -G <a comma delimited list of groups to which this user belongs> -m -k <directory to make this new directory look like> -s <users shell> passwd <username> -- change the passwd for the user you have just added [/code] |