NTFS 파티션이 읽기 전용으로 마운트되는 이유는 무엇입니까?


33

최근까지 Windows 파티션 (C :)과 데이터 파티션 (E :)이 모두 읽기 / 쓰기로 마운트되었습니다. 이제 둘 다 읽기 전용으로 만 마운트되는 것 같습니다.

GParted 크기 조정 (오류)

ntfsresize v2.0.0 (libntfs 10:0:0)
Device name : /dev/sda4
NTFS volume version: 3.1
Cluster size : 4096 bytes
Current volume size: 86207623680 bytes (86208 MB)
Current device size: 86207627264 bytes (86208 MB)
New volume size : 78662066688 bytes (78663 MB)
Checking filesystem consistency ...
Accounting clusters ...
Space in use : 62126 MB (72.1%)
Collecting resizing constraints ...
Needed relocations : 1606868 (6582 MB)
Schedule chkdsk for NTFS consistency check at Windows boot time ...
Resetting $LogFile ... (this might take a while)
Relocating needed data ...
ERROR: Extended record needed (1032 > 1024), not yet supported!
Please try to free less space.

chkdsk 출력 :

Checking file system on E:
The type of the file system is NTFS.
Volume label is Data.

A disk check has been scheduled.
Windows will now check the disk.                         
  99482 file records processed.
  495 large file records processed.                     
  0 bad file records processed.                         
  0 EA records processed.                               
  0 reparse records processed.                          
  104412 index entries processed.                       
  0 unindexed files processed.                          
  99482 security descriptors processed.                 
  2466 data files processed.                            

CHKDSK is verifying Usn Journal...
  4479208 USN bytes processed.                                     
Usn Journal verification completed.
Windows has checked the file system and found no problems.

84187132 KB total disk space.
  60479688 KB in 69969 files.
     15520 KB in 2467 indexes.
         0 KB in bad sectors.
    174336 KB in use by the system.
     65536 KB occupied by the log file.
  23517588 KB available on disk.
      4096 bytes in each allocation unit.
  21046783 total allocation units on disk.
   5879397 allocation units available on disk.

Internal Info:
9a 84 01 00 00 1b 01 00 fc 1a 01 00 00 00 00 00  ................
01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
42 00 00 00 52 73 5c 77 b0 e7 1d 00 b0 df 1d 00  B...Rs\w........

fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda5 during installation
UUID=8213cc89-2438-41b9-899f-13b4c5b299af /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=45873767-d9ae-4f0c-baab-ffc2726ac24e none            swap    sw              0       0

GParted (GSmartControl)에서 드라이브를 점검하고 ntfsfix모두 성공적으로 완료되었으며 변경 사항이 없습니다.

파티션

dev / sda1 NTFS WinRE
dev / sda2 NTFS Windows C :
dev / sda3 확장
dev / sda4 NTFS 데이터 E :
dev / sda5 EXT4 Ubuntu
dev / sda6 linux-swap

다음에 대한 설명을 찾고 있습니다.

Internal Info:
9a 84 01 00 00 1b 01 00 fc 1a 01 00 00 00 00 00  ................
01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
42 00 00 00 52 73 5c 77 b0 e7 1d 00 b0 df 1d 00  B...Rs\w........

Resetting $LogFile ... (this might take a while)
Relocating needed data ...
ERROR: Extended record needed (1032 > 1024), not yet supported!
Please try to free less space.

파티션에 데이터를 쓸 수 있습니까? 그렇지 않다면 아래의 답변을 읽으십시오. 그리고 당신은 크기를 조정하려고 노력하고 있지 않으므로 읽기 전용이라고 가정합니까? 아니면 실제로 드라이브에 데이터를 쓰려고합니까?
토마스 워드

답변:


27

시스템에 NTFS 파티션에 쓸 파일이 설치되어 있지 않을 수 있습니다.

터미널에서 이것을 시도하십시오 :

sudo apt-get remove ntfsprogs && sudo apt-get install ntfs-3g

ntfsprogs시스템에있는 경우 제거 ntfs-3g하고 NTFS 파티션에 올바르게 쓸 수 있도록 설치 합니다.

그런 다음 시스템을 재부팅하고 쓰기 액세스를 위해 NTFS 드라이브를 열어보십시오. 이제 NTFS 드라이브에 쓸 수 있습니다.


해당 명령을 실행하면 시스템에서 ntfsprogs를 제거하라는 메시지가 표시됩니다. 이것은 문제가 해결 된 것으로 보입니다. 나는 불량 섹터 (그중 10 개)로 인해 우분투에서 디스크 검사를 실행할 때 ntfsprogs를 설치했다고 생각합니다. 감사!
Lewis Goddard

네. 첨부 한 데이터로 인해 귀하의 질문이 약간 오도되었습니다. 첨부 된 데이터는 일반적으로 드라이브에 쓸 수없는 이유를 설명하지는 않으며 해당 데이터에서 드라이브 크기를 조정하려고한다는 것을 알 수 있습니다.
토마스 워드

1
ntfs-3g를 설치할 때 ntfsprogs를 제거하면 읽기 전용 문제가 해결되었습니다.
Luis Alvarado

NTFS 파일을 만들었습니다.
Gerry

38

공연 의 Windows 전체 종료하면 드라이브가 완전히 우분투로 장착 할 수 있습니다. "전원"메뉴에서 "종료"버튼을 누를 때 SHIFT 키를 누르면됩니다.


2
Windows 파티션이 없어지면이 작업을 수행 할 수 있습니까? 달리 말하면, Windows가 더 이상 설치되지 않은 경우이 작업을 수행 할 수 있습니까?
epotter

아니요,이 방법은 Windows가 설치되어 있지 않은 경우 클릭 할 수있는 "종료"단추가 없으므로 Windows가 설치된 경우에만 유용합니다.
schulwitz

고마워, 이것은 나를 위해 일했다 ... 내 Windows 10 파티션은 읽기 전에 페이지에서 지침을
따랐

5
Windows를 종료 할 때마다 Shift 키를 누르지 않아도되도록하려면 (이중 부팅 구성에서는 잊어 버리기 쉽습니다) 최대 절전 모드를 완전히 비활성화하면 하이브리드 부팅도 비활성화되므로 문제가되지 않습니다. Windows로 부팅 할 때 관리자 권한 명령 프롬프트 ( "관리자 권한으로 실행")를 시작하고 powercfg /h offEnter 키를 누릅니다. 그런 다음 Ubuntu로 재부팅하면 NTFS 드라이브를 쓸 수 있습니다. 최대 절전 모드를 완전히 비활성화하지 않으려면 제어판을 사용하여 하이브리드 부팅 만 비활성화 할 수 있습니다 (명령 줄 방법을 찾을 수 없음). 가이드의 답변에서 링크를 참조하십시오.
벤 존슨

내 Windows 10 + Ubuntu 18.04 이중 부팅에서 작동했습니다. 감사!
Kuai Yu

11

나에게 일어난 일은

sudo ntfsfix /dev/sdxX // where x is HDD and X is drive number, in my case it was /dev/sda1

Windows에서 만든 모든 로그 파일을 제거합니다.

나를 위해 일했다.


1
위험 해 Linux에서 Windows 캐시 파일을 제거하여 디스크를 다시 쓸 수있게 만들지 만 Windows로 다시 부팅하면 어떻게됩니까?

나는 창에 한 번 사용하고 고정 우분투이 아래에 더 이상 읽기 / 쓰기로 마운트 할 수있는 2 차 하드 디스크가 대단히 감사합니다 그것을
wraith3690 001

0

그것은 윈도우 10와 듀얼 부팅의 경우에 발생하는 경우, 당신은 선택을 취소 필요 turn on fast startupControl Panel --> Power Options --> Choose what the power buttons do하지 재부팅 한 후 종료합니다. 제대로 완료되면 읽기 / 쓰기 권한으로 NTFS 파티션에 정상적으로 액세스 할 수 있습니다.

이는 Windows 10 업데이트가 최대 절전 모드 인 기본 빠른 시작으로 재설정하기 때문에 발생합니다.

여기에 이미지 설명을 입력하십시오

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.