即使在 fsck 之后,HDD 也会随机变为只读

即使在 fsck 之后,HDD 也会随机变为只读

我用的是一台六年前的笔记本。旧的硬盘在开始发出一些噪音后就坏了。新的硬盘经过几个月的良好使用后也开始发出噪音。不过,如果我在使用前重新启动两次,噪音就会停止一整天。

所以昨天,在使用大量处理器时屏幕冻结,强制重启后,Ubuntu 启动了一个initramfs终端。

我运行fsck /dev/sda1 -y后,Ubuntu 正常启动,但硬盘是只读的(并且冻结了几秒钟,这并不常见)。在尝试了一些解决方案后,我发现硬盘不是以只读方式启动的,它成为使用一段时间后变为只读。通常是在下载过程中,例如更新,但我不太清楚是什么原因导致它变为只读。

我不擅长硬件,但我认为这台笔记本可能是硬盘杀手。

英文截图:

在此处输入图片描述 在此处输入图片描述

答案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模式下执行相同操作)。

相关内容