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
- Our article - Repairing ReiserFS file system with reiserfsck
- Surviving a Linux Filesystem Failures - Repairing ext2/3 using superblock
- Repairing Linux ext2 or ext3 file system
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop










{ 0 comments… add one now }