RHEL 7.5 - 그룹에서 사용자를 제거하는 방법은 무엇입니까?

RHEL 7.5 - 그룹에서 사용자를 제거하는 방법은 무엇입니까?

usermod그룹에서 사용자를 제거하는 옵션이 없습니다.

Usage: usermod [options] LOGIN

Options:
  -c, --comment COMMENT         new value of the GECOS field
  -d, --home HOME_DIR           new home directory for the user account
  -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
  -f, --inactive INACTIVE       set password inactive after expiration
                                to INACTIVE
  -g, --gid GROUP               force use GROUP as new primary group
  -G, --groups GROUPS           new list of supplementary GROUPS
  -a, --append                  append the user to the supplemental GROUPS
                                mentioned by the -G option without removing
                                him/her from other groups
  -h, --help                    display this help message and exit
  -l, --login NEW_LOGIN         new value of the login name
  -L, --lock                    lock the user account
  -m, --move-home               move contents of the home directory to the
                                new location (use only with -d)
  -o, --non-unique              allow using duplicate (non-unique) UID
  -p, --password PASSWORD       use encrypted password for the new password
  -R, --root CHROOT_DIR         directory to chroot into
  -s, --shell SHELL             new login shell for the user account
  -u, --uid UID                 new UID for the user account
  -U, --unlock                  unlock the user account
  -Z, --selinux-user SEUSER     new SELinux user mapping for the user account

그룹에서 사용자를 제거하는 데 사용할 수 있는 명령과 옵션은 무엇입니까?

답변1

적절한 옵션은 -G삭제할 그룹을 지정하는 대신 유지할 그룹을 지정하는 것입니다. user구성원이고 다음을 실행하여 제거할 수 있는 경우group1group2group2

usermod -G group1 user

user유일한 보충 그룹 멤버십이 되도록 업데이트됩니다 group1.

에서 언급했듯이그룹에서 사용자를 제거하는 방법은 무엇입니까?, 다음을 사용할 수도 있습니다 gpasswd.

gpasswd -d user group2

user그것에서 제거됩니다 group2.

관련 정보