Site Administration Page 2 - Managing Users, Part 2 |
userdel userdel does the exact opposite of useradd—it removes existing users. This straightforward command has only one optional parameter and one required parameter:
By running the command with only the user’s login specified on the command line, for example, userdel sshah, all of the entries in the /etc/passwd and /etc/shadow files, and references in the /etc/group file, are automatically removed. By using the optional parameter (for example, userdel -r sshah) all of the files owned by the user in their home directory are removed as well. usermod usermod allows you to modify an existing user in the system. It works in much the same way as useradd. The exact command-line usage is as follows:
Every option you specify when using this command results in that particular parameter being changed about the user. All but one of the parameters listed here are identical to the parameters documented for the useradd program. That one option is -l. The -l option allows you to change the user’s login name. This and the -u option are the only options that require special care. Before changing the user’s login or UID, you must make sure the user is not logged in to the system or running any processes. Changing this information if the user is logged in or running processes will cause unpredictable results. Here’s an example of using usermod to change user hdc so that their comment field reads H.D. Core instead of H.D.C:
groupadd The group commands are similar to the user commands; however, instead of working on individual users, they work on groups listed in the /etc/group file. Note that changing group information does not cause user information to be automatically changed. For example, if you remove a group whose GID is 100 and a user’s default group is specified as 100, the user’s default group would not be updated to reflect the fact that the group no longer exists. The groupadd command adds groups to the /etc/group file. The command-line options for this program are as follows:
Table 5-2 shows command options and their descriptions.
Suppose, for example, that you want to add a new group called research with the GID 800. To do so, you would type the following command:
groupdel Even more straightforward than userdel, the groupdel command removes existing groups specified in the /etc/group file. The only usage information needed for this command is:
where group is the name of the group to remove. For example, if you wanted to remove the research group, you would issue this command:
groupmod The groupmod command allows you to modify the parameters of an existing group. The options for this command are:
where the -g option allows you to change the GID of the group, and the -n option allows you to specify a new name of a group. Additionally, of course, you need to specify the name of the existing group as the last parameter. For example, if the superman research group wanted to change its name to batman, you would issue the following command:
blog comments powered by Disqus |
|
|
|
|
|
|
|