Learn Mode

Linux Access Control Lists and Permissions Quiz

#1

In Linux, what command is used to change the ownership of a file?

chown
Explanation

Change ownership of a file.

#2

What does the 'r' permission in Linux file permissions represent?

Read
Explanation

Allows reading of a file.

#3

Which command is used to change the group ownership of a file in Linux?

chgrp
Explanation

Change group ownership of a file.

#4

In Linux, what is the purpose of the 'sudo' command?

Switches to the superuser account
Explanation

Switch to superuser account.

#5

What is the purpose of the 'chsh' command in Linux?

Changes the shell for a user
Explanation

Change user's shell.

#6

Which command is used to display the Access Control List (ACL) of a file in Linux?

getfacl
Explanation

Get file ACL.

#7

What is the significance of the 'sticky bit' in Linux file permissions?

Prevents users from deleting others' files in a directory
Explanation

Prevent deletion of others' files in a directory.

#8

Which command is used to remove read permission for the group from a file in Linux?

chmod g-r
Explanation

Remove read permission for group from a file.

#9

In Linux, what is the octal representation for the read, write, and execute permissions for the owner?

421
Explanation

Owner permissions: read(4), write(2), execute(1).

#10

What is the purpose of the 'umask' command in Linux?

Specifies the default file creation mask
Explanation

Specify default file creation mask.

#11

Which command is used to grant execute permission to a file in Linux?

chmod +x
Explanation

Grant execute permission to a file.

#12

What does the 'setuid' permission do in Linux?

Sets the user ID of the owner to the effective user ID of the program
Explanation

Set user ID of owner to program's effective user ID.

#13

What is the purpose of the 'default ACL' in Linux?

Sets default permissions for new files and directories in a directory
Explanation

Set default permissions for new files and directories.

#14

Which command is used to give execute permission to all users for a directory and its subdirectories in Linux?

chmod -R +x
Explanation

Grant execute permission recursively.

#15

What does the 'setgid' permission do in Linux?

Sets the group ID of the owner to the effective group ID of the program
Explanation

Set group ID of owner to program's effective group ID.

Test Your Knowledge

Craft your ideal quiz experience by specifying the number of questions and the difficulty level you desire. Dive in and test your knowledge - we have the perfect quiz waiting for you!