Linux에서 기본 그룹 속성 없이 사용자를 생성하는 방법은 무엇입니까?

Linux에서 기본 그룹 속성 없이 사용자를 생성하는 방법은 무엇입니까?

알아요, 속성을 사용하여 생성하는 방법

adduser -n username

그룹, 우리는 에서 찾습니다 /etc/default/useradd. 하지만 에서는 login.defs뭔가를 추가할 수 있습니다.

답변1

원하는 것이 기본적으로 adduser user1생성되어 user1그룹에 포함되도록 하려면 다음 줄을 변경해야 합니다.101/etc/adduser.conf:

# The USERGROUPS variable can be either "yes" or "no".  If "yes" each
# created user will be given their own group to use as a default.  If
# "no", each created user will be placed in the group whose gid is
# USERS_GID (see below).
USERGROUPS=yes

# If USERGROUPS is "no", then USERS_GID should be the GID of the group
# `users' (or the equivalent group) on your system.
USERS_GID=100

따라서 귀하의 경우에는 다음을 수행합니다.

USERGROUPS=no
USERS_GID=101

관련 정보