User Administration in Linux Syntax: useradd <username> Configuration File: /etc/passwd User Administration with customization Syntax: useradd <option> <argument> <username> Options: u - UID g - GID c - Comment d - home directory b - base directory -e account expiry -o non unique -G make member of secondary group -r system user -s user login shell User modification Syntax: usermod <option> <argument> <username> Options: u - UID g - GID c - Comment d - home directory b - base directory -e account expiry -o non unique -G make member of secondary group -r system user -s user login shell User password management Syntax: passwd <username> chpasswd Configuration file: /etc/shadow Group Administration Syntax: groupadd <groupname> Configuration file: /etc/groups User account delete and group delete Syntax: userdel -r <userna...
There are seven types of files in linux. - Regular File d directory b block device file c character device file s socket file p pipe file l link file Assigning permission Syntax: chmod (u/g/o/a) (+/-/=) (r/w/x/-) <file name/path> u - user g -group o - others a - all r read w write x execute + add permission - remove permission = assign permission Permission using numbers 4 read 2 write 1 execute Changing ownership Syntax: chown <username>:<groupname> <file / directory name> Access control list setfacl -m u:<username>:<permission> <file name> sefacl -x u:<username> <file name> getfacl <file name/directory> Special permissions suid sgid sticky bit