答案1
通过坏块,在驱动器完全失效之前,您可能会或可能不会再使用它。您没有热问题。您有 27 个潜在的坏块等待重新映射。执行坏块后重新运行 SMART 诊断,以确认驱动器的状态。诊断失败并不一定意味着驱动器无法使用。
请记住,最终您可能必须/想要更换硬盘。我推荐您使用 Western Digital 硬盘,您现在拥有的就是这种硬盘。不过,您将无法再购买 320G 硬盘。
Note: do NOT abort a bad block scan!
Note: do NOT bad block a SSD
Note: backup your important files FIRST!
sudo e2fsck -fcky /dev/sdXX
# 只读测试
或者
sudo e2fsck -fccky /dev/sdXX
# 非破坏性读写测试(受到推崇的)
-k 很重要,因为它会保存之前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有之前的坏块信息。
-fccky 参数...
-f Force checking even if the file system seems clean.
-c This option causes e2fsck to use badblocks(8) program to do a
read-only scan of the device in order to find any bad blocks.
If any bad blocks are found, they are added to the bad block
inode to prevent them from being allocated to a file or direc‐
tory. If this option is specified twice, then the bad block
scan will be done using a non-destructive read-write test.
-k When combined with the -c option, any existing bad blocks in the
bad blocks list are preserved, and any new bad blocks found by
running badblocks(8) will be added to the existing bad blocks
list.
-y Assume an answer of `yes' to all questions; allows e2fsck to be
used non-interactively. This option may not be specified at the
same time as the -n or -p options.
答案2
不幸的是,这听起来像是硬件问题。可能是笔记本电脑过热。请尝试以下操作:
1. 确保风扇运转正常
你听到风扇转动的声音了吗?它总是开着吗?如果它从不转动,你可能需要更换风扇。如果它总是开着,你的管道可能被堵塞了。
2. 清理散热区域的灰尘
尝试用压缩空气吹出风扇管道。如果您愿意,请打开笔记本电脑,用压缩空气和软刷清洁风扇管道。甚至可以使用一点外用酒精。
3. 从 USB 启动,然后从那里 fsck 你的硬盘
您还可以尝试从实时 USB 启动,这样您的硬盘就不用使用了。现在您可以使用磁盘实用程序fsck
来真正检查和处理您的硬盘(尽管您可能能够在intramfs
模式下执行相同操作)。