Документ взят из кэша поисковой машины. Адрес оригинального документа : http://star.arm.ac.uk/sag-0.4/node47.html
Дата изменения: Sun May 4 15:24:35 1997
Дата индексирования: Mon Oct 1 22:44:42 2012
Кодировка:
Checking filesystem integrity with fsck next up previous contents index
Next: Checking for disk errors Up: Filesystems Previous: Mounting and unmounting

 

Checking filesystem integrity with fsck

Filesystems are complex creatures, and as such, they tend to be somewhat error-prone. A filesystem's correctness and validity can be checked using the fsck  command. It can be instructed to repair any minor problems it finds, and to alert the user if there any unrepairable problems. Fortunately, the code to implement filesystems is debugged quite effectively, so there are seldom any problems at all, and they are usually caused by power failures, failing hardware, or operator errors; for example, by not shutting down the system properly.

Most systems are setup to run fsck  automatically at boot time, so that any errors are detected (and hopefully corrected) before the system is used. Use of a corrupted filesystem tends to make things worse: if the data structures are messed up, using the filesystem will probably mess them up even more, resulting in more data loss. However, fsck  can take a while to run on big filesystems, and since errors almost never occur if the system has been shut down properly, a couple of tricks are used to avoid doing the checks in such cases. The first is that if the file /etc/fastboot  exists, no checks are made. The second is that the ext2 filesystem has a special marker in its superblock that tells whether the filesystem was unmounted properly after the previous mount. This allows e2fsck  (the version of fsck  for the ext2 filesystem) to avoid checking the filesystem if the flag indicates that the unmount was done (the assumption being that a proper unmount indicates no problems). Whether the /etc/fastboot  trick works on your system depends on your startup scripts, but the ext2 trick works every time you use e2fsck --it has to be explicitly bypassed with an option to e2fsck  to be avoided. (See the e2fsck  man page for details on how.)

The automatic checking only works for the filesystems that are mounted automatically at boot time. Use fsck  manually to check other filesystems, e.g., floppies.

If fsck  finds unrepairable problems, you need either in-depth knowlege of how filesystems work in general, and the type of the corrupt filesystem in particular, or good backups. The latter is easy (although sometimes tedious) to arrange, the former can sometimes be arranged via a friend, the Linux newsgroups and mailing lists, or some other source of support, if you don't have the know-how yourself. I'd like to tell you more about it, but my lack of education and experience in this regard hinders me. The debugfs  program by Theodore T'so should be useful.

fsck  must only be run on unmounted filesystems, never on mounted filesystems (with the exception of the read-only root during startup). This is because it accesses the raw disk, and can therefore modify the filesystem without the operating system realizing it. There will be trouble, if the operating system is confused.


next up previous contents index
Next: Checking for disk errors Up: Filesystems Previous: Mounting and unmounting

Lars Wirzenius
Sun May 4 14:08:43 EEST 1997