nerdexam
Linux_Foundation

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.

Submitted by miguelv· Apr 18, 2026Storage Management

Question

According to the File System Hierarchy Standard, the lost+found directory is used for:

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)
  • A
    3% (1)
  • B
    3% (1)
  • D
    94% (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.

Afiles with unknown owners.

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.

Bmissing device files found by/proc.

The lost+found directory is for recovered filesystem fragments, not specifically for device files found or managed by /proc.

Cunknown binary files found by find.

The lost+found directory is not a repository for unknown binary files found by find; it's specific to filesystem recovery operations.

Dunlinked files found by fsck.Correct

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

#File System Hierarchy#lost+found directory#fsck utility#File System Structure

Community Discussion

No community discussion yet for this question.

Full LFCS Practice