![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX Desktop for Dummies Questions & Answers Discuss UNIX and Linux user interfaces like GNOME, KDE, CDE, and Open Office here. All UNIX and Linux Newbies Welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Creating USERs with restricted Access | ramanan25 | UNIX for Advanced & Expert Users | 4 | 05-05-2008 11:05 PM |
| creating users | vishwaraj | HP-UX | 1 | 01-14-2008 08:30 AM |
| Creating Users with SMC | chaandana | UNIX for Advanced & Expert Users | 2 | 06-26-2007 01:45 AM |
| bash/awk scripting help (creating OLD new users) | Jukai | Shell Programming and Scripting | 2 | 10-17-2006 05:36 AM |
| Creating Users!!!! | ocpguy | UNIX for Dummies Questions & Answers | 1 | 12-04-2001 03:39 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread |
Rating:
|
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 |
|
||||
|
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] |
![]() |
| Bookmarks |
| Tags |
| unix commands |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|