👿Create User on Linux
Get Started
ทำการ Create User
useradd -m -s /bin/bash -u 1234 devopsทำการ Set Password
passwd devopsNew password:
Retype new password:
passwd: password updated successfullyทำการตรวจสอบ Home Directory
ls -la /home/devops/drwxr-x--- 2 devops devops 4096 Dec 7 06:24 .
drwxr-xr-x 4 root root 4096 Dec 7 06:24 ..
-rw-r--r-- 1 devops devops 220 Jan 6 2022 .bash_logout
-rw-r--r-- 1 devops devops 3771 Jan 6 2022 .bashrc
-rw-r--r-- 1 devops devops 807 Jan 6 2022 .profileทำการ Add User to Group
usermod -a -G adm,cdrom,sudo,dip,plugdev,lxd devopsทำการตรวจสอบ User Group
Last updated
Was this helpful?