系統掛起並且滑鼠繼續加載

系統掛起並且滑鼠繼續加載

它是最近開始的,我認為我的硬碟可能會出現故障。當我啟動系統並輸入密碼時,它顯示正常,然後大約一分鐘左右,它會顯示幫助(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.

相關內容