Note #2025-12-29-001
Faced a failing disk in my raidz2 ZFS pool today.
Recovery was pretty simple:
- Asked the service provider to replace the disk
- Find new disk ID etc using:
lsblk -o NAME,SIZE,MODEL,SERIAL,LABEL,FSTYPE ls -ltrh /dev/disk/by-id/ata-* - Resilver using:
sudo zpool replace lake <old_disk_id> <new_disk_id> - Watch status using:
watch zpool status -v
Re-silvering is still ongoing, but hopefully completes without issues. Will run a manual zpool scrub at the end to make sure everything is okay.
Interactions