Session ID: 150
Mode: random
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: Unanswered
According to the FHS, where should temporarily mounted filesystems generally be mounted?
Status: Unanswered
Your Answer:
Options:
Explanation:
The FHS defines /mnt as the mount point for temporarily mounted filesystems [1].
Which command is recommended on systems using vim to open an interactive tutorial?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson notes that distributions adopting vim also have the command vimtutor [1].
Enter the grep command that lists only lines starting with the word options from /etc/modprobe.d/alsa-base.conf.
Status: Unanswered
Your Answer:
Accepted Answer(s):
grep '^options' /etc/modprobe.d/alsa-base.conf
Explanation:
The lesson provides this exact command [1].
In virtualization terminology, what are virtual machines called relative to the hypervisor?
Status: Unanswered
Your Answer:
Options:
Explanation:
The virtual machines managed by a hypervisor are called guests [1].
Which command is used to list and count matching adjacent strings in sorted input?
Status: Unanswered
Your Answer:
Options:
Explanation:
uniq is used to list and count matching strings [1].
What is virtualization?
Status: Unanswered
Your Answer:
Options:
Explanation:
Virtualization allows a software platform called a hypervisor to run processes that contain a fully emulated computer system [1].
How can egrep be used to list only .org or .com domains from domains.txt?
Status: Unanswered
Your Answer:
Options:
Explanation:
The guided exercise answer gives egrep ".org$|.com$" domains.txt [1].
What does the fstab option nouser mean?
Status: Unanswered
Your Answer:
Options:
Explanation:
The answers to explorational exercises state that nouser will not allow ordinary users to mount the filesystem [1].
Enter the command that removes the file draft.txt.
Status: Unanswered
Your Answer:
Accepted Answer(s):
rm draft.txt
Explanation:
Deleting files is explicitly mentioned in the lesson introduction [1].
Enter the command that shows where the man page for ifconfig is stored.
Status: Unanswered
Your Answer:
Accepted Answer(s):
whereis -m ifconfig
Explanation:
The lesson shows whereis -m as the option used to locate man pages [1].