Symantec logo

fsck_vxfs

NAME

fsck_vxfs - check and repair a VxFS file system

SYNOPSIS

fsck [-t vxfs ] [ generic_options ] [ -o p ] special...

fsck [-t vxfs ] [ generic_options ] [ -o full,nolog,mounted ] special...

AVAILABILITY

VRTSvxfs

DESCRIPTION

fsck examines VxFS file systems for consistency. Because Veritas File Systems record pending file system updates in an intent log, fsck typically replays the intent log instead of doing a full structural file system check.

special specifies one or more block or special character devices, for example, /dev/sdb1.

If multiple devices are specified, each device is checked in turn unless the -o p suboption is also specified, in which case the devices are checked in parallel.

NOTES

Checking the raw device is almost always faster.

Unlike 2.x and earlier releases of VxFS, a full file system check does not always perform pending extended inode operations. Some extended operations can only be processed when the file system is mounted. A file system that has been marked CLEAN can still contain extended operations.

If a structural flaw is detected during the intent log replay, the full fsck flag is set on the file system without operator interaction.

If fsck encounters a large file on an older OS version, the command stops without completing the file system check.

Due to a behavioral issue with the Linux fsck wrapper, you must run the VxFS fsck command, /opt/VRTS/bin/fsck, when specifying any option with an equals sign ("=") in it, such as -o zapvol=volname.

Cluster File System Issues

The fsck command reserves a shared volume when invoked, unless the -n option is specified. If the shared volume is in use by another command, the fsck command will fail.

Be careful when accessing shared volumes with other utilities, such as dd, that can write data to disk. It is possible to destroy data being accessed from other nodes.

OPTIONS

generic_options

Supported by the generic fsck command. See the fsck(8) manual page. generic_options include the options listed below.

-t vxfs

Specifies the VxFS file system type.

-m

Reports whether the file system was marked clean and returns an exit code. A zero indicates the file system is clean, a 32 indicates that the file system needs checking. This option does not validate the file system.

-n | N

Assumes a no response to all prompts by fsck. Does not open the file system for writing, does not replay the intent log, and performs a full file system check. Use this option to test for file system corruption.

-V

Echoes the expanded command line, but does not execute the command.

-y | Y

Assumes a yes response to all prompts by fsck. Additionally, if the file system requires a full file system check after the log replay, or if the nolog suboption causes the log replay to be skipped and the file system is not clean, a full file system check is performed.

-o

Specifies VxFS file system-specific options. These options can be a combination of the following in a comma-separated list:

full

Performs a full file system check.

mounted=[replayid]

Allows a full check of a mounted file system. This option is only used internally as part of the primary cluster node recovery process after the primary fails. Never enter this option from the command line, as it can destroy a file system if not used correctly.

nolog

Does not perform a log replay. Use this option only if the log area was physically damaged or fsck cannot read the log's layout.

Use the -n option to verify whether there are file system inconsistencies. Use fsck -o full,nolog to fix a corrupted file system and avoid a log replay. If you run fsck -o full without nolog on a clean file system, it replays the intent log and performs a full file system check.

p

Allows parallel log replay for several VxFS file systems. Each message from fsck is prefixed with the device name to identify the device. This suboption does not perform a full file system check in parallel; that is still done sequentially on each device, even when multiple devices are specified. This option is compatible only with the -y|Y option (that is, non-interactive full file system check), in which case a log replay is done in parallel on all specified devices. A sequential full file system check is performed on devices where needed. The number of devices that can be checked in parallel is determined by the amount of physical memory in the system. One instance of fsck on a single device can consume up to a maximum of 32 megabytes of memory.

zapvol=volname

Forcibly removes a volume from a multi-volume file system. All inodes that refer to this volume are zapped.

Because VxFS maintains an intent log, a complete check is generally not required. The default is to perform an intent log replay only. If fsck or the log replay detects file system damage, an indication that a complete check is required is placed in the super-block. In this case, if you specified the -y option, the full check runs after the log replay. If you did not specify the -y option, run fsck -o full to perform the full structural check.

A full check looks for these inconsistencies:

OUTPUT

Structural errors discovered during a full check are displayed on the standard output. Responses required during a full check are read from standard input.

The following return codes are used for the -m (generic) option:

0

The file system is unmounted and clean.

32

The file system is unmounted and needs checking.

33

The file system is mounted.

34

The stat of the device failed.

Other

The state could not be determined because of an error.

In most cases, fsck prints the following messages:

log replay in progress

replay complete - marking super-block as CLEAN

If the file system is already clean, fsck prints the following message instead:

file system is clean - log replay is not required

If fsck prints any other messages, a full structural check is needed. If the -y option is specified, fsck performs (if necessary) a full check after running the intent log replay. If the -y option is not used, fsck must be invoked with the -o full option to perform a full structural check.

If -o p is specified, fsck prints the following messages for a device, for example /dev/sdb1:

/dev/sdb1:log replay in progress

/dev/sdb1:replay complete - marking super-block as CLEAN

DIAGNOSTICS

All error messages that relate to the contents of a file system produced during a log replay are displayed on the standard output. All I/O failures and exit messages are displayed on standard error.

SEE ALSO

fs_vxfs(4), fsck(8), mkfs(8)