badblocks

badblocks is a Linux utility to check for bad sectors on a disk drive. It creates a list of these sectors that can be used with other programs, like mkfs, so that they are not used in the future and thus do not cause corruption of data. It is part of the e2fsprogs project,[1] and a port is available for BSD operating systems.[2]

When run as a standalone program, badblocks gives a list of blocks with problems, if any. This makes it a good option for checking whether the disk drive is healthy independently from SMART data and file system checks.[3]

e2fsck's "-c" option

A more common use case is the invocation of badblocks as part of e2fsck when passing the option "-c" to scan for bad blocks and prevent data from being stored on these blocks. This is done by adding the list of found bad blocks to the bad block inode to prevent the affected sectors from being allocated to a file or directory. The test can be done using a read-only ("-c") or non-destructive read-write ("-cc") test method.[4]

dumpe2fs

Running dumpe2fs -b will display the list of bad blocks recorded by e2fsck or tune2fs.

Examples

badblocks -nvs /dev/sdb

This would check the drive "sdb" in non-destructive read-write mode and display progress by writing out the block numbers as they are checked.

badblocks -wvs /dev/sdb6

This would check the sixth partition of the drive "sdb", in destructive read-write mode (-w = write-mode), which writes 4 different patterns on the whole partition and verifies each by reading back. It displays progress by writing out the block numbers as they are checked (-s = show, -v = verbose). All data on the partition will be overwritten at the block level.

badblocks -wvsb 4096 /dev/sdb

This does the same as above, but to the entire drive, with a block size of 4096. This destroys MBRs, partitions and data alike. Modern disk drives will probably not show any defective sectors because they silently remap bad sectors to spare tracks,[5] but running the program with a new drive for several days will test the whole surface, and when reading it afterwards S.M.A.R.T. data will eventually show reallocated sectors.

Using the -w option on a device containing an existing file system erases the data on that device.

badblocks's "-c" option

badblocks has a "-c" option that lets users set the number of blocks it tests at a time. This option usually has little or no effect on scan speed.[6]

References

  1. E2fsprogs: Ext2/3/4 Filesystem Utilities – Release notes
  2. FreshPorts – sysutils/e2fsprogs
  3. badblocks(8)  Linux Administration and Privileged Commands Manual
  4. e2fsck(8)  Linux Administration and Privileged Commands Manual
  5. http://www.ukdatarecovery.com/articles/bad-sector-remapping.html
  6. Ts'o, Theodore. "Re: Bug#232240: e2fsprogs: -c <number of blocks> should perhaps default to a higher number". Debian bug tracking system. Retrieved 11 December 2011.

External links

This article is issued from Wikipedia - version of the 10/7/2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.