I reformatted a hard drive to ext4, planning to use it as a backup drive. After mounting the freshly-formatted drive, I discovered a single empty directory inside it: lost+found. What's the purpose of this mysterious directory?
Asked
Active
Viewed 2.0k times
1 Answers
25
lost+found
is the directory in which fsck
(filesystem check) will put files it restores from orphaned blocks. This can happen when something corrupts filesystem meta-blocks (also called i-nodes) in which the references of the blocks are stored which contain the data of a file.
Look also at http://tldp.org/LDP/Linux-Filesystem-Hierarchy/html/lostfound.html http://ubuntuforums.org/archive/index.php/t-229143.html

psusi
- 37,551

txwikinger
- 28,462