내 컴퓨터에는 부팅 드라이브와 저장소 드라이브라는 두 개의 드라이브가 있고 Ubuntu 18.04를 실행하고 있습니다. 그러나 어떤 이유로 내 저장 드라이브가 작동하지 않습니다.
$ ls
'$RECYCLE.BIN' _SMSTaskSequence 'System Volume Information'
$ mkdir new_folder
mkdir: cannot create directory ‘new_folder’: Read-only file system
$ sudo mkdir new
[sudo] password for ncw135:
mkdir: cannot create directory ‘new’: Read-only file system
그럼 난 달렸어
$ sudo mount -o remount,rw,uid=1000,gid=1000 /media/ncw135/DATA/
기반으로이것질문이 오류 메시지를 다음으로 변경했습니다.
$ cd /media/ncw135/DATA/ # i.e. the storage drive
/media/ncw135/DATA$ mkdir new
$ mkdir: cannot create directory ‘new’: No such file or directory
/media/ncw135/DATA$
이 문제를 해결하는 방법에 대한 아이디어가 있습니까? 감사해요
편집 - 진행 상황
다른 곳에 드라이브를 마운트하려고 시도했는데 다음과 같은 결과가 나왔습니다.
$ sudo mount /dev/sda2 ~/storage/
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
답변1
디스크에 깨끗하지 않은 파일 시스템(0, 0)이 포함되어 있습니다. 메타데이터는 Windows 캐시에 보관되며 로드가 거부됩니다. NTFS 파티션이 안전하지 않은 상태이므로 읽기 전용 마운트로 대체합니다. Windows를 완전히 다시 시작하고 종료하십시오. 최대 절전 모드로 전환하거나 빠르게 다시 시작하지 마십시오.
이는 NTFS 파일 시스템이 최대 절전 모드 Windows 시스템 또는 빠른 시작이 활성화된 Windows 8 또는 10 시스템용임을 나타냅니다(Windows 10에서는 일반적으로 빠른 시작이 기본적으로 활성화되어 있음).
메타데이터 캐시에 쓰는 Windows 설치가 더 이상 없고 캐시된 메타데이터가 손실될 위험이 있는 경우(빠른 부팅에서는 최소화되어야 하며 모든 베팅은 최대 절전 모드로 설정됨) 파일 시스템 드라이버 remove_hiberfile
의 마운트 옵션을 사용합니다 ntfs-3g
.
sudo mount -t ntfs-3g -o remove_hiberfile /dev/sdaX /your/desired/location
이런 방법으로 한 번 파일 시스템을 마운트한 후, 다음번에는 정상적으로 마운트할 수 있습니다.