Linux命令(114)之groupdel

linux命令之groupdel

1.groupdel介绍

linux命令groupdel是用来删除群组。如果待删除的群组中仍包含用户,需先删除这些用户后,才能删除群组,当然使用-f参数也可以强制删除。

groupdel命令删除用户组时,会修改/etc/group和/etc/gshadow文件。

2.groupdel用法

groupdel [参数] GroupName

groupdel参数
参数 说明
-h 显示帮助信息
-f 强制删除用户组,即使有用户存在

3.实例

3.1.显示groupdel的帮助信息

命令:

groupdel -h

[root@rhel77 ~]# groupdel -h
Usage: groupdel [options] GROUP

Options:
  -h, --help                    display this help message and exit
  -R, --root CHROOT_DIR         directory to chroot into
  -P, --prefix PREFIX_DIR       prefix directory where are located the /etc/* files
  -f, --force                   delete group even if it is the primary group of a user

[root@rhel77 ~]# 

3.2.删除cc用户组

命令:

groupdel cc

[root@rhel77 ~]# cat /etc/group
root:x:0:
......
cc:x:1129:
[root@rhel77 ~]# groupdel cc

3.3.强制删除apps用户组

命令:

groupdel -f apps

[root@rhel77 ~]# cat /etc/group | grep apps
apps:x:1123:tomcat
[root@rhel77 ~]# groupdel apps

你可能感兴趣的:(Linux命令,linux,运维,服务器,groupdel)