-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.
您可能会,也可能不会,在驱动器完全失败之前,通过错误地阻止它来获得更多的使用。你没有热量问题。您有 27 个潜在的坏块等待重新映射。进行坏块阻塞后重新运行 SMART 诊断程序,以确认驱动器的状态。诊断失败并不一定意味着驱动器不可用。
了解最终您可能需要/想要更换 HDD。我推荐您现在拥有的 Western Digital 驱动器。不过,您将无法再购买 320G 驱动器。
sudo e2fsck -fcky /dev/sdXX
# 只读测试或者
sudo e2fsck -fccky /dev/sdXX
# 无损读/写测试(推荐)-k 很重要,因为它保存了以前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有先前的坏块信息。
-fccky 参数...
不幸的是,听起来您可能有硬件问题。笔记本电脑可能过热。尝试以下操作:
1. 确保您的风扇正常工作
你听到风扇来了吗?它总是打开吗?如果它永远不会出现,您可能需要更换风扇。如果它总是打开,您的管道可能会堵塞。
2. 清除冷却区域的灰尘
尝试用压缩空气吹出你的风扇管道。如果您觉得这样做很舒服,请打开笔记本电脑并用压缩空气和软刷清洁风扇管道。甚至可以使用一点外用酒精。
3. 从现场 USB 启动并从那里 fsck 你的 HD
您也可以尝试从 live USB 启动,这样您的 HD 就不会被使用。您现在可以使用磁盘实用程序
fsck
来真正检查和处理您的 HD(尽管您可能能够在intramfs
模式下执行相同的操作)。