What is the difference between the linux disk error-checking tools fsck and e2fsck?
|
fsck is just the original name. When they came out with new file systems they would need a specific tool for each one, efsck for ext, e2fsck for ext2, dosfsck, fsckvfat. So they made fsck the front end that just calls whichever is the appropriate tool. |
|||
|
|
fsck is a wrapper for the filesystem-specific fsck.* family of tools. They can be used interchangeably with one caveat (from the fsck manpage):
However, fsck will handle most of the normal operations on a file system. |
|||
|
|