시스템이 중단되고 마우스가 계속 로드됩니다.

시스템이 중단되고 마우스가 계속 로드됩니다.

최근에 시작되었는데 내 하드 드라이브가 고장난 것 같습니다. 시스템을 부팅하고 비밀번호를 입력하면 정상적으로 켜지고, 약 1분 정도 후에 도움말(Ubuntu Desktop Guide)이 나타나고 마우스 로딩이 시작됩니다. 즉시 시스템이 지연되거나 정지되기 시작합니다.

내가 할 수 있는 유일한 일은 문을 닫는 것뿐이다.

내 새 하드 드라이브에서도 이런 일이 일어나고 있습니다.

이에 대한 정보를 부탁드립니다.

새 드라이브: 여기에 이미지 설명을 입력하세요 여기에 이미지 설명을 입력하세요 여기에 이미지 설명을 입력하세요

기존 드라이브: 여기에 이미지 설명을 입력하세요 여기에 이미지 설명을 입력하세요 여기에 이미지 설명을 입력하세요

멤테스트: 여기에 이미지 설명을 입력하세요

답변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.

관련 정보