Making a user
1.make a normal User
useradd username
2make a user with specific home directory
useradd -h /home/newuser
3.make a user attached to a group
useradd -G group
4.make a user with no access
useradd -sbin/nologin
1.make a normal User
useradd username
2make a user with specific home directory
useradd -h /home/newuser
3.make a user attached to a group
useradd -G group
4.make a user with no access
useradd -sbin/nologin
Comments
Post a Comment