Session ID: 125
Mode: random
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: Unanswered
Enter the command that displays the shared libraries required by /bin/ls.
Status: Unanswered
Your Answer:
Accepted Answer(s):
ldd /bin/ls
Explanation:
ldd followed by a binary path lists its shared library dependencies. This is standard Linux knowledge beyond the specific source excerpt [1][2].
Which file is commonly generated and used by the dynamic linker to speed up library lookup?
Status: Unanswered
Your Answer:
Options:
Explanation:
The dynamic linker commonly uses /etc/ld.so.cache to speed up library discovery. This is standard Linux knowledge; the detailed lesson text is not available in the current context [1][2].
Enter a GRUB 2 menuentry line that sets the root device by filesystem UUID 5dda0af3-c995-481a-a6f3-46dcd3b6998d.
Status: Unanswered
Your Answer:
Accepted Answer(s):
search --set=root --fs-uuid 5dda0af3-c995-481a-a6f3-46dcd3b6998d
Explanation:
The material shows replacing set root with search --set=root --fs-uuid followed by the UUID [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].
Enter the command that redirects stdout to the file now.txt using an explicit file descriptor with the date command.
Status: Unanswered
Your Answer:
Accepted Answer(s):
date 1> now.txt
Explanation:
The guided exercise uses date 1> now.txt as the example [1].