Skip to content

Useradd

새로운 사용자를 추가한다.

HELP MESSAGE

  -b, --base-dir BASE_DIR       base directory for the home directory of the new account
  -c, --comment COMMENT         GECOS field of the new account
  -d, --home-dir HOME_DIR       home directory of the new account
  -D, --defaults                print or change default useradd configuration
  -e, --expiredate EXPIRE_DATE  expiration date of the new account
  -f, --inactive INACTIVE       password inactivity period of the new account
  -g, --gid GROUP               name or ID of the primary group of the new account
  -G, --groups GROUPS           list of supplementary groups of the new account
  -h, --help                    display this help message and exit
  -k, --skel SKEL_DIR           use this alternative skeleton directory
  -K, --key KEY=VALUE           override /etc/login.defs defaults
  -l, --no-log-init             do not add the user to the lastlog and faillog databases
  -m, --create-home             create the user's home directory
  -M, --no-create-home          do not create the user's home directory
  -N, --no-user-group           do not create a group with the same name as the user
  -o, --non-unique              allow to create users with duplicate (non-unique) UID
  -p, --password PASSWORD       encrypted password of the new account
  -r, --system                  create a system account
  -R, --root CHROOT_DIR         directory to chroot into
  -s, --shell SHELL             login shell of the new account
  -u, --uid UID                 user ID of the new account
  -U, --user-group              create a group with the same name as the user
  -Z, --selinux-user SEUSER     use a specific SEUSER for the SELinux user mapping

새로운 사용자 만들기

INFORMATION

메인으로 사용하는 방법

## -U, --user-group              사용자명과 동일한 그룹을 생성한다.
## -m, --create-home             사용자 홈 디렉토리를 생성한다.
## -s /bin/bash                  로그인할 기본 쉘을 지정한다. (이게 없으면 자동완성이 안된다)
sudo useradd -s /bin/bash -U -m -p [PASSWORD] [USERNAME]

wheel 그룹 추가하고 싶다면:

sudo gpasswd -a [USERNAME] wheel
$ su -l [USERNAME]

sudo권한이 추가되지 않았다면 visudo 또는 sudoedit를 사용하여 권한을 수정한다.

Create a user in docker group

$ groupadd docker
$ useradd -G docker [USERNAME]

See also

  • Linux
  • Linux:User
  • adduser: 대화형 작업으로 사용자 홈 디렉터리, 사용자 그룹 비밀번호를 처리할 수 있음. (기본 계정정보를 함께 생성)
  • useradd: 명령어 실행 시 사용자 환경을 옵션으로 지정해야됨. (계정만 생성하며 기타 다른 정보를 수동으로 생성 및 설정 해야 한다)
  • groupadd

Favorite site