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라는 아이디 삭제
반응형
'Operating System > Linux' 카테고리의 다른 글
[CentOS] yum install 시 "Could not retrieve mirrorlist http://mirrorlist.centos.org" 해결방법 (0) | 2022.05.04 |
---|---|
[Alpine] 라이브러리 의존성 설치 에러 조치 (0) | 2021.12.22 |
[ubuntu] apt-get update 시 다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다. (2) | 2021.05.18 |
[Kali Linux] apt-get update가 되지 않을 경우 (0) | 2021.03.25 |
[Kali Linux] 한글 깨짐 증상 조치방법 (0) | 2021.03.25 |