Session ID: 144
Mode: objective
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: All
Which df option filters output to a specific filesystem type, such as ext4?
Status: Unanswered
Your Answer:
Accepted Answer(s):
-t
df -t ext4
Explanation:
The guided exercise answer explains that df can filter filesystems with the -t option followed by the filesystem name [1].
Which fsck option prints what would be done and exits without actually checking the filesystem?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that -N prints what would be done and exits, without actually checking the filesystem [1].
Which command is used to view the amount of disk space in use on a filesystem?
Status: Unanswered
Your Answer:
Options:
Explanation:
The summary states that du is used to view the amount of disk space in use on a filesystem [1].
What important warning applies when using fsck or related utilities?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson explicitly warns: NEVER run fsck (or related utilities) on a mounted filesystem, otherwise data may be lost [1].
Which command checks how much disk space is being used by just the files in the current directory, excluding subdirectories, in human-readable format?
Status: Unanswered
Your Answer:
Accepted Answer(s):
du -S -h -d 0
du -Shd 0
Explanation:
The guided exercise answer gives both command forms [1].
Enter the df command that lists every ext4 filesystem with device, mount point, total inodes, available inodes and percentage of free space.
Status: Unanswered
Your Answer:
Accepted Answer(s):
df -t ext4 --output=source,target,itotal,iavail,pcent
Explanation:
The guided exercise answer gives this exact command [1].
Which du command shows only the disk usage of the current directory itself, excluding subdirectories, in human-readable format?
Status: Unanswered
Your Answer:
Options:
Explanation:
The guided exercise answer gives du -S -h -d 0 or du -Shd 0 [1].
Which command lists information for every ext4 filesystem, showing device, mount point, total inodes, available inodes and percentage of free space?
Status: Unanswered
Your Answer:
Options:
Explanation:
The guided exercise answer gives df -t ext4 --output=source,target,itotal,iavail,pcent [1].
Which fsck option, when used with -A, skips checking the root filesystem?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that -R, used with -A, skips checking the root filesystem [1].
Which e2fsck option answers no to all questions and prevents modifications?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that -n answers no to all questions and causes the filesystem to be mounted read-only so it cannot be modified [1].