Session ID: 151
Mode: objective
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].
Where are most regular users' home directories typically located?
Status: Unanswered
Your Answer:
Options:
Explanation:
Most users' home directories are located under /home according to the FHS description in the lesson [1].
Which command is the most versatile tool for finding files and directories by attributes such as name, size, age and permissions?
Status: Unanswered
Your Answer:
Options:
Explanation:
The summary describes find as a versatile command used to find files and folders based on a variety of search criteria [1].
Which directory is the root of the entire Linux filesystem hierarchy?
Status: Unanswered
Your Answer:
Options:
Explanation:
According to the FHS, / is the root directory, the topmost directory in the hierarchy [1].
What does FHS stand for in Linux filesystem organization?
Status: Unanswered
Your Answer:
Options:
Explanation:
Linux distributions commonly follow the Filesystem Hierarchy Standard (FHS), which defines a standard layout for the filesystem [1].
Which command displays the full path to an executable command?
Status: Unanswered
Your Answer:
Options:
Explanation:
The summary states that which displays the full path to an executable [1].
Which directory contains essential binaries available to all users?
Status: Unanswered
Your Answer:
Options:
Explanation:
The FHS defines /bin as the location for essential binaries available to all users [1].
How can you find where the man page for ifconfig is stored?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson shows whereis -m as the option to display manual page locations, illustrated with locate [1].
Enter a locate command that finds files containing both the pattern report and either updated, update or updating in their names.
Status: Unanswered
Your Answer:
Accepted Answer(s):
locate report | grep -E 'update|updated|updating'
locate -r 'report.*(update|updated|updating)|(update|updated|updating).*report'
Explanation:
This guided exercise is from Objective 104.7. The exact answer is not shown in the provided excerpt, so these are standard valid approaches based on locate usage and regular expressions within the lesson scope [1].
Which command uses a local database to find files by name quickly?
Status: Unanswered
Your Answer:
Options:
Explanation:
The summary explains that locate uses a local database containing file locations [1].