본문 바로가기
Operating System/Linux

[Ubuntu] 우분투에서 사용자 추가하기 (useradd, adduser)

by 근육곰돌이 2021. 9. 1.
728x90

우분투에서 유저 추가하는 방법을 알려드리고자 합니다.

유저 추가할때는 CentOS와 달리 데비안은 "adduser"명령어를 사용합니다.

그리고 사용 후 sudo그룹을 추가하여야 정상적으로 유저에서 sudo를 사용할 수 있습니다.

 

1. 유저 추가 방법

# adduser [UserID]

ex) adduser bear
# sudo adduser [UserID]  <--- 사용자 추가

adduser [UserID]
Adding user `[UserID]' ...
Adding new group `[UserID]' (1001) ...
Adding new user `[UserID]' (1001) with group `[UserID]' ...
Creating home directory `/home/[UserID]' ...
Copying files from `/etc/skel' ...
New password:                                   <--- 패스워드 입력   
Retype new password:                            <--- 패스워드 재입력 
passwd: password updated successfully
Changing the user information for securegate
Enter the new value, or press ENTER for the default
	Full Name []:        <--- 기타 정보이므로 입력하지 싫으시면 Enter!
	Room Number []: 
	Work Phone []: 
	Home Phone []: 
	Other []: 
Is the information correct? [Y/n] Y   <---- 'Y' : 야쓰

 

2. 유저 sudo 그룹권한 추가

#sudo usermod -aG sudo [UserID]

ex) sudo usermod -aG sudo bear

만일 sudo그룹권한 지정을 하지않은다면,

유저에서 sudo 명령어 시 "[UserID] is not in the sudoers file.  This incident will be reported." 에러가 발생됩니다.

 

 

3. 유저 생성 확인

cat /etc/passwd

 

4. 참고: 유저 삭제

sudo deluser [UserID]

ex) sudo deluser bear <-- bear라는 아이디 삭제

 

 

반응형