最近始まったのですが、ハード ドライブが故障しているのではないかと思います。システムを起動してパスワードを入力すると、正常に起動しますが、1 分ほど経つとヘルプ (Ubuntu デスクトップ ガイド) が表示され、マウスの読み込みが始まります。すぐに、システムが遅れたり、ハングしたりし始めます。
私にできる唯一のことはシャットダウンすることかもしれません。
新しいハードドライブでも同じことが起こっています。
これについて何か情報はありますか?
新しいドライブ:
古いドライブ:
メモリテスト:
答え1
コメントから...
2 つの異なる 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.