![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to create a user in HP-UX | Harikrishna | HP-UX | 3 | 02-08-2008 06:31 AM |
| create user | magasem | HP-UX | 2 | 10-09-2006 05:50 PM |
| I create user but i cant login the user i created. | jerome | UNIX for Dummies Questions & Answers | 5 | 06-09-2006 02:08 PM |
| Other than root user .Normal user is unable to create files | mallesh | UNIX for Advanced & Expert Users | 1 | 06-22-2005 09:18 AM |
| Need to create a user... | New_Guru | UNIX Desktop for Dummies Questions & Answers | 5 | 06-13-2005 08:36 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
how to create an user
hi
can anyone help me out to create an user to access specific folder only. |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
# useradd -u 102 -g 101 -d /home/user1 -m -s /bin/sh -c "Test User" user1 |
|
|||
|
dude...........
#useradd -u <uid> -g <gid> -G <GID/G.NAME> -c <comment> -d </export/home/user1> -m -s </bin/sh> user1 u --> uid --> user identification g --> gid --> group " " (primary group) G --> GID --> " " (secondary ") no need to give this GID c -- --- ---> comment(if u give ur name also) no need to give this c d --> directory m --> making home dir for user s --> shell.no need to give this shell it will take by default. ok.. |