badblocks -s -v -o /root/bb.log /dev/sda
将结果保存到bb.log
smartctl -a /dev/sda3
(快速检测硬盘坏道,看read
,write
后面有没有errors
)
badblocks -s -w /dev/sda END START
(END
代表需要修复的扇区末端,START代表需要修复的扇区起始端)fsck -a /dev/sda
修复后再用badblocks -s -v -o /root/bb.log /dev/sda
监测看是否还有坏道存在,如果坏道还是存在的话说明坏道属于硬盘坏道。硬盘坏道要用隔离方法,首先记录监测出的硬盘坏道然后分区的时候把硬盘坏道所在的扇区分在一个分区(大小一般大于坏扇区大小),划分出的坏道分区不使用即可达到隔离的目的
0
磁道坏道和硬盘坏道(准备换硬盘)0
磁道坏道的修复方法是隔离0磁道,使用fdsk
划分区的时候从1
磁道开始划分区。
如果是硬盘坏道的话,只能隔离不能修复
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:Linux磁盘坏道检测和修复