ZFS HDD fix bad sectors

Post Reply
zemerdon
Site Admin
Posts: 255
Joined: Mon Jan 23, 2023 8:13 pm

ZFS HDD fix bad sectors

Post by zemerdon »

Fix uncorrectable offline sectors on zfs

Intro
When a disk gets older, there may be some bad sectors on it. In fact every disk has bad sectors. They are just marked as bad and not used by the disk. Every disk has spare sectors to use if some will fail and the disk will remap the corrupted parts to the good ones as soon as we try to write to a bad sector. So this is how we can trigger the remap by hand.

Even if this fix works, consider replacing the failing disk. It may still be ok for a long time bud then suddendly fail in a moment of Murphy’s law. If the disk is brand new, send it back for a warranty replacement.

Locate the start LBA value of the bad area

Code: Select all

smartctl -t long /dev/ada2
smartctl -a /dev/ada2
Look for the sector that failed. The line should look like 1 Extended offline Completed: read failure 90% 25166 892134344.

Set debugmode to overwrite the sectors
sysctl kern.geom.debugflags=16
Overrite some sectors
I usually overwrite not just one sector because in my cases I allways had multiple corrupted sectors near the same position! Again: Backup your data!!!

Code: Select all

dd if=/dev/zero of=/dev/ada2 bs=512 count=10000 seek=<startsector> conv=noerror,sync
set mode back to original
sysctl kern.geom.debugflags=0

start a scrub to restore the data

Code: Select all

zpool scrub poolname
zpool status -v poolname
Post Reply