본문 바로가기

Ubuntu

[Ubuntu] 듀얼부팅시 Ubuntu에서 하드디스크 접근이 안 되는 문제 해결하기

 

  Ubuntu에서 하드디스크 접근 안 되는 문제 해결하기 

 

 

Ubuntu에서 하드디스크에 접근이 되지 않을 때가 있습니다.

 

"새 볼륨" 이라는 이름의 /dev/sdb1 디스크에 접근하지 못하고 있는 경우입니다. 

이때의 에러메세지는 다음과 같습니다.

 

Unable to access “새 볼륨”Error mounting /dev/sdb1 at /media/mesnotes/새 볼륨: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdb1" "/media/mesnotes/새 볼륨"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).Metadata kept in Windows cache, refused to mount.Failed to mount '/dev/sdb1': Operation not permittedThe NTFS partition is in an unsafe state. Please resume and shutdownWindows fully (no hibernation or fast restarting), or mount the volumeread-only with the 'ro' mount option.

 

 

해결방법은 간단합니다.

 

터미널을 열고, 아래 명령어를 입력해줍니다.

/dev/sdb1 은 설정에 따라 다소 상이할 수 있습니다. 위 메세지의 굵은 글씨 부분을 참고하셔서 해당 이름을 적으시면 됩니다.

 

$ sudo ntfsfix /dev/sdb1

 

위의 명령어를 입력하면 바로 접근이 가능해집니다.

 

 

재부팅시 간헐적으로 또 같은 문제가 발생하게 되는데, 그때마다 위의 명령어를 입력해주고 있습니다.

 

정확한 원인은 잘 모르겠으나, 보통 윈도우에서 [다시 시작] 기능으로 윈도우 종료 후 우분투로 진입했을 때 발생하는 듯합니다.