All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.
@(#)fsck.8 5.1 (Berkeley) 04/27/85
/etc/fsck [ -b block# ] [ -y ] [ -n ] [ filesystem ] ...
The system takes care that only a restricted class of innocuous inconsistencies can happen unless hardware or software failures intervene. These are limited to the following:
Unreferenced inodes .ns Link counts in inodes too large .ns Missing blocks in the free list .ns Blocks in the free list also in files .ns Counts in the super-block wrongThese are the only inconsistencies which fsck with the -p option will correct; if it encounters other inconsistencies, it exits with an abnormal return status and an automatic reboot will then fail. For each corrected inconsistency one or more lines will be printed identifying the file system on which the correction will take place, and the nature of the correction. After successfully correcting a file system, fsck will print the number of files on that file system and the number of used and free blocks.
Without the -p option, fsck audits and interactively repairs inconsistent conditions for file systems. If the file system is inconsistent the operator is prompted for concurrence before each correction is attempted. It should be noted that a number of the corrective actions which are not fixable under the -p option will result in some loss of data. The amount and severity of data lost may be determined from the diagnostic output. The default action for each consistency correction is to wait for the operator to respond yes or no. If the operator does not have write permission fsck will default to a "-n " action.
Fsck has more consistency checks than its predecessors "check, dcheck, fcheck, " "and" " icheck" combined.
The following flags are interpreted by fsck.
6 -b Use the block specified immediately after the flag as the super block for the file system. Block 32 is always an alternate super block.
6 -y Assume a yes response to all questions asked by fsck; this should be used with great caution as this is a free license to continue after essentially unlimited trouble has been encountered.
6 -n Assume a no response to all questions asked by fsck; do not open the file system for writing.
If no filesystems are given to fsck then a default list of file systems is read from the file /etc/fstab .
Inconsistencies checked are as follows:
6 1. Blocks claimed by more than one inode or the free list.
.ns
6 2. Blocks claimed by an inode or the free list outside the range of the file system.
.ns
6 3. Incorrect link counts.
.ns
6 4. Size checks:
.ns
.ns
6 5. Bad inode format.
.ns
6 6. Blocks not accounted for anywhere.
.ns
6 7. Directory checks:
.ns
Inode number out of range.
.ns
6 8. Super Block checks:
.ns
More blocks for inodes than there are in the file system.
.ns
6 9. Bad free block list format.
.ns
6 10. Total free block and/or free inode count incorrect.
Orphaned files and directories (allocated but unreferenced) are, with the operator's concurrence, reconnected by placing them in the lost+found directory. The name assigned is the inode number. The only restriction is that the directory lost+found must preexist in the root of the filesystem being checked and must have empty slots in which entries can be made. This is accomplished by making lost+found , copying a number of files to the directory, and then removing them (before fsck is executed).
Checking the raw device is almost always faster.
.ns
21 /etc/fstab contains default list of file systems to check.
There should be some way to start a fsck -p at pass n.