Linux

[Linux] adduser & useradd

Richard.Ryu 2024. 3. 8. 15:33
반응형

Ubuntu & Debian 계열


adduser > 자동적으로 사용자 home directory 생성

root@DESKTOP-VBIFT8A:~# adduser test
Adding user `test' ...
Adding new group `test' (1001) ...
Adding new user `test' (1001) with group `test' ...
Creating home directory `/home/test' ...
Copying files from `/etc/skel' ...
New password:
Retype new password:
passwd: password updated successfully
-----
root@DESKTOP-VBIFT8A:/home# ls
ryu  test

 

useradd > 사용자만 생성

root@DESKTOP-VBIFT8A:/home# useradd test2
root@DESKTOP-VBIFT8A:/home# ls
ryu  test

 

 

CentOS & Redhat 계열


adduser / useradd 둘다 동일하게 home directory 생성

[root@localhost home]# adduser test
[root@localhost home]# ls
test  
[root@localhost home]# useradd test2
[root@localhost home]# ls
test  test2

 

반응형

'Linux' 카테고리의 다른 글

[Linux] tree  (0) 2024.03.19
[Linux] userdel  (0) 2024.03.11
[Linux] root 비밀번호 분실  (0) 2023.01.31
[Linux] 폐쇄망 rpm 설치  (0) 2022.09.07
[Linux] sar 명령어  (0) 2022.08.02