它最近开始出现,我认为我的硬盘可能出现故障。当我启动系统并输入密码时,一切正常,然后大约一分钟后,它会显示帮助(Ubuntu 桌面指南),我的鼠标开始加载。系统立即开始滞后或挂起。
我唯一能做的事情就是关机。
我的新硬盘也出现了这种情况。
请问有关于此的任何信息吗?
新驱动器:
旧驱动器:
内存测试:
答案1
来自评论...
两个不同的 HDD 显示出类似的读取和 ECC 错误。怀疑是散热问题。
果然,冷却风扇坏了。更换了。
偶尔观察/检查SMART Data
以寻找额外的/新的读取和 ECC 错误。
您应该做好备份,然后使用此程序对两个磁盘进行坏块处理...
Note: do NOT abort a bad block scan!
Note: do NOT bad block a SSD
Note: backup your important files FIRST!
Note: this will take many hours
Note: you may have a pending HDD failure
启动至 Ubuntu Live DVD/USB。
在terminal
...
sudo fdisk -l
# 识别所有“Linux 文件系统”分区
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.