setfacl

The setfacl utility sets Access Control Lists (ACLs) of files and directories. To install setfacl on Ubuntu/Debian, run apt install acl Here is an example, where we create 2 users, one user will be given access to folder inside another users home directory. useradd -m –shell /bin/bash user1 useradd -m –shell /bin/bash user2 su – … Read more

chown

chown command is ued to change ownership of a file or folder In this example ownership of folder public_html to username and group specified. chown -R username:group public_html -R used for recursively change ownership, that is all files and folders inside the folder also get the new ownership. See Linux Commands

uname

List Kernel Full details boby@hon-pc-01:~ $ uname -a Linux hon-pc-01 4.4.0-53-generic #74-Ubuntu SMP Fri Dec 2 15:59:10 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux boby@hon-pc-01:~ $ List Architecture boby@hon-pc-01:~ $ uname -m x86_64 boby@hon-pc-01:~ $ Show Kernel Version boby@hon-pc-01:~ $ uname -r 4.4.0-53-generic boby@hon-pc-01:~ $ See Linux Commands