Session ID: 139
Mode: objective
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: Unanswered
When unmounting a filesystem, what can be supplied to umount?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that umount can be followed by the device name or the mount point [1].
Before a filesystem can be accessed on Linux, what must be done first?
Status: Unanswered
Your Answer:
Options:
Explanation:
Before a filesystem can be accessed on Linux, it needs to be mounted [1].
What is an equivalent /etc/fstab entry for a systemd mount unit with What=/dev/disk/by-uuid/56C11DCC5D2E1334, Where=/mnt/external, Type=ntfs, Options=defaults?
Status: Unanswered
Your Answer:
Options:
Explanation:
The answers to explorational exercises provide this exact equivalent fstab entry [1].
What happens to files already present in a directory while another filesystem is mounted on that directory?
Status: Unanswered
Your Answer:
Options:
Explanation:
The mounted-on directory need not be empty, but any files in it will be inaccessible by name while the filesystem is mounted [1].
Which mount option passes a comma-separated list of mount options?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that -o or --options passes a list of comma-separated mount options [1].
How can you remount as read-only an already mounted exFAT filesystem with UUID 6e2c12e3-472d-4bac-a257-c49ac07f3761 mounted at /mnt/data?
Status: Unanswered
Your Answer:
Accepted Answer(s):
mount -o remount,ro /mnt/data
mount -o remount,ro UUID=6e2c12e3-472d-4bac-a257-c49ac07f3761
mount -o remount,ro /dev/disk/by-uuid/6e2c12e3-472d-4bac-a257-c49ac07f3761
Explanation:
The lesson states that when remounting, you do not need to specify the filesystem type, only the device name or the mount point, using mount -o remount,ro [1].
Where should a systemd mount unit such as mnt-external.mount be placed?
Status: Unanswered
Your Answer:
Options:
Explanation:
The answers to explorational exercises state that the unit should be placed in /etc/systemd/system [1].
What does the fstab option defaults expand to according to the lesson?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that defaults passes rw, suid, dev, exec, auto, nouser and async to mount [1].
Enter the command that forcefully unmounts /mnt/server or remounts it read-only if unmounting is not possible.
Status: Unanswered
Your Answer:
Accepted Answer(s):
umount -f -r /mnt/server
umount -fr /mnt/server
Explanation:
The answers to explorational exercises give umount -f -r /mnt/server and note that grouped parameters like umount -fr also work [1].
What is the general syntax for manually mounting a filesystem?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson gives the syntax: mount -t TYPE DEVICE MOUNTPOINT [1].