Term
| what are the permission classes |
|
Definition
|
|
Term
| what are the permission types |
|
Definition
|
|
Term
|
Definition
| read write execute and none (Access Denied) |
|
|
Term
| what are the permission modes used to change permissions |
|
Definition
+ - = add, revoke, and assign |
|
|
Term
| used to change permissions |
|
Definition
|
|
Term
| add execute permissions for the owner |
|
Definition
|
|
Term
| add write permissions for the owner |
|
Definition
|
|
Term
| add write permissions for group members and the public |
|
Definition
|
|
Term
| remove write permissions for the public |
|
Definition
|
|
Term
| assign read write and execute permissions to all three user categories |
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
| starting with -r--r--r-- add execute permissions for the file owner |
|
Definition
|
|
Term
| starting with -r--r--r-- add all permissions for the file owner |
|
Definition
|
|
Term
| starting with -rwxr--r-- add write permissions to the group and others |
|
Definition
|
|
Term
| starting with -rwxrw-rw- revoke write permissions from the public |
|
Definition
|
|
Term
| starting with -rwxrw-rw- revoke write permissions from the public |
|
Definition
|
|
Term
| assign rwx to all three permission classes |
|
Definition
|
|
Term
| before the umask is applied, what are the initial permissions |
|
Definition
| 666 for files, 777 for directories |
|
|
Term
| show the umask information in the rwx form |
|
Definition
|
|
Term
| change the umask permissions to give others no permissions and group read only |
|
Definition
|
|
Term
| how are default file permissions determined when a file is created |
|
Definition
|
|
Term
| find the default umask value |
|
Definition
|
|
Term
|
Definition
666 - 022 = 644 umask is subracted from initial permissions |
|
|
Term
| change the owner of file1 to user2 |
|
Definition
|
|
Term
| change the group of file1 to group2 |
|
Definition
|
|
Term
| change the user and group to user2 for file1 |
|
Definition
|
|
Term
| change the owner and group membership to user2 recursively |
|
Definition
| chown -R user2:user2 dir1 |
|
|
Term
|
Definition
| allows a file to be run by others with the exact same permissions as the owner |
|
|
Term
| ll /bin/su what are the owner permissions |
|
Definition
|
|
Term
| /bin/foo has -rwxr-xr-x add the setuid bit using octal notation |
|
Definition
|
|
Term
| /bin/foo needs the setuid bit set, set it without changing anything else |
|
Definition
|
|
Term
| unset the setuid bit for /bin/foo |
|
Definition
|
|
Term
| find all the files that have the setuid bit set |
|
Definition
|
|
Term
|
Definition
| Sets the group id for all the files in a directory. Then all members of a group can share files in the directory |
|
|
Term
| the new /data1 directory has -rwxrwx--- permissions. Files in the directory are going to be shared. Set the permissions to share files in the directory |
|
Definition
|
|
Term
|
Definition
| set on public directories so that only the owner can delete files and sub-directories |
|
|
Term
| set the sticky bit on public directory /tmp/data1 |
|
Definition
|
|
Term
| use symbolic notation to add the sticky bit to /tmp/tmpdata |
|
Definition
|
|
Term
| find all the directories with the sticky bit set |
|
Definition
| find / -type d -perm 1000 |
|
|