LFCS · Question #753
According to the File System Hierarchy Standard, the lost+found directory is used for:
The correct answer is D. unlinked files found by fsck. According to the File System Hierarchy Standard, the lost+found directory stores unlinked files and directories recovered by the fsck utility during filesystem checks.
Question
Options
- Afiles with unknown owners.
- Bmissing device files found by/proc.
- Cunknown binary files found by find.
- Dunlinked files found by fsck.
How the community answered
(31 responses)- A3% (1)
- B3% (1)
- D94% (29)
Why each option
According to the File System Hierarchy Standard, the lost+found directory stores unlinked files and directories recovered by the fsck utility during filesystem checks.
The lost+found directory is for unlinked files recovered by fsck, not generally for files with unknown owners which are still linked within the filesystem.
The lost+found directory is for recovered filesystem fragments, not specifically for device files found or managed by /proc.
The lost+found directory is not a repository for unknown binary files found by find; it's specific to filesystem recovery operations.
The lost+found directory is a designated location within a filesystem where the fsck (filesystem check) utility places orphaned files or directories that it recovers. These are typically files that have valid data blocks but no longer have an associated directory entry, making them unlinked but potentially salvageable.
Concept tested: File System Hierarchy Standard (FHS) lost+found purpose
Source: https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s15.html
Topics
Community Discussion
No community discussion yet for this question.