- Which three permissions are used for Linux files?
- Which three types of ownership are defined for Linux files?
- Which command is used to change the permissions on a file?
chmod
- What mechanism controls the default permissions for newly created files?
umask
- How is the following symbolic permission described in octal: rwxrw-r--
0764. 7 from rwx on the first three places (user), 6 from rw- on the second three places (group), and 4 from r-- on the last three places (others).
- How is the following octal permission described symbolically: 0644
rw-r--r--. First 6 is ReadWrite, then two 4s which are just Reads.
- Which command allows us to gain superuser privileges?
sudo
- Which commands can we use to change ownerships for a file?
- How can we arrange for multiple users to share access to files?
We make sure they share group membership, and create a directory in which only members of those groups are allowed.
- Which types of Advanced Permissions does Linux have?
- File Attributes
- Special File Permissions
- Access Control Lists