# 홈 디렉토리를 지정할 때 사용하고 디렉토리가 없으면 생성 $ useradd test -m
# 홈 디렉토리 지정 $ useradd test -d /home/test
test 사용자의 비밀번호를 생성합니다. passwd는 리눅스 사용자 계정의 비밀번호를 변경하는 명령어입니다.
1 2 3 4 5
$ passwd test Changing password for user test. New password: **** Retype new password: **** passwd: all authentication tokens updated successfully.
adduser
adduser 명령어는 useradd 명령어와 달리 사용자 홈 디렉터리를 자동으로 만들고, 비밀번호 설정 등로 한 번에 할 수 있습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
$ adduser test Adding user `test' ... Adding new group `test' (1000) ... Adding new user `test' (1000) with group `test' ... Creating home directory `/home/test' ... Copying files from `/etc/skel' ... New password: **** Retype new password: **** passwd: password updated successfully Changing the user information for test Enter the new value, or press ENTER for the default Full Name []: test Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n]