Force the disk to reallocate bad block
First you will want to see how many badblocks the harddrive is aware of through the smartctl command:
Code: Select all
# smartctl -t long /dev/sdx
Code: Select all
# smartctl -l selftest /dev/sdx
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0
Code: Select all
dd if=/dev/zero of=/dev/sdxy bs=4096 count=1 seek=2269012 sync
Code: Select all
hdparm --read-sector 4621327 /dev/sdxy
hdparm --repair-sector 4621327 --yes-i-know-what-i-am-doing /dev/sdxy
Code: Select all
# smartctl -A /dev/sdx
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 1
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 1
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 1
To get Offline_Uncorrectable to go back to 0 you need to run a SMART long test and a selftest:
Code: Select all
smartctl -t long /dev/sdx
Code: Select all
smartctl -l selftest /dev/sdx