October 2000
Intermediate to advanced
1152 pages
26h 41m
English
Although linuxconf gives you the option of having a GUI admin tool for managing users and groups, you can also manage users and groups from the command line. This is something Linux is pretty famous for.
The useradd command is a command-line utility that you can use to create a new user or to update an existing user. To add new user Barney Rubble to the system, simply su to root and type:
[root@cartoons]# useradd -c "Barney Rubble" -d /home/brubble brubble
Note
If you have permission problems or if the command is not found, you may want to make sure that you issue a su - command to obtain a root login shell.
The -c option is the full name of the person. The -d option is the home ...
Read now
Unlock full access