What command do you run to check file system consistency under UNIX or Linux?
Q. What command I need to run to check file system consistency under UNIX or Linux like operating systems?
A. You need to run fsck [file system consistency check] command to check file system consistency and repair a Linux / UNIX file system. Microsoft Windows/DOS equivalent programs are scandisk and chkdsk.
Normally, the fsck program will try to run filesystems on different physical disk drives in parallel to reduce total amount time to check all of the filesystems. Also note that fsck is run automatically at boot time when the system detects that a file system is in an inconsistent state, indicating a non-graceful shutdown, such as a crash or power loss.
You must unmout file system before running fsck command. fsck should always be run in a single user mode.
How do I use fsck program?
Following is general sequence for running fsck:
Goto single user mode:
# init 1
Unmount file system (for example /dev/sdb1 under Linux or under FreeBSD use /dev/ad0s1f etc) :
# umount /dev/sdb1
Now run fsck command:
# fsck /dev/sdb1
Now mount filesystem
# mount -a
Go backto multiuser mode 2/3:
# init 2
How do I run fsck under UNIX using alternate superblock?
You can run fsck command using alternate superblock, enter:
# fsck -F ufs -o b=32 /dev/rdsk/c0t0d0s6
Use newfs -N /dev/rdsk/c0t0d0s6 command to find out location of superblock.
Recommended readings
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- How do I check and repair MS-DOS file systems under Linux?
- How to test or check reverse DNS
- Troubleshoot Linux / UNIX bind dns server zone problems with named-checkzone tool
- Solaris find out a package which a file belongs to
- Linux / Unix: Checking Free Disk Space
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!




Recent Comments
Today ~ 70 Comments
Today ~ 2 Comments
Yesterday ~ 10 Comments
Yesterday ~ 12 Comments
09/03/2008 05:29 pm (2 days ago) ~ 6 Comments