GPT
파티션 테이블에 6개의 파티션이 있는 16GB USB 플래시 드라이브가 있습니다 . 파티션을 올바르게 감지 fdisk
합니다 gdisk
. Fedora 27에 Mate Desktop을 설치한 후 모든 파티션을 올바르게 마운트할 수 있지만 gparted
하나의 파티션과 해당 iso9660
파티션 테이블만 표시됩니다. 또한 이 iso9660
파티션은 삭제할 수 없습니다 gparted
.
놀랍게도 동일한 컴퓨터 gparted
에 설치하면 lUbuntu
6개의 파티션이 모두 감지되었으며 동일한 USB 드라이브를 사용하여 제대로 작동했습니다.
드라이브가 0
다음과 같이 채워지면 공백이 되며 gparted
나중에 Fedora 27에서 수정할 수 있습니다.
dd if=/dev/zero of=/dev/sdb bs=2048
또는 2048로 포맷하면 Fedora 27에서 다시 작동합니다 block-size
.gparted
그런데 백업을 다시 복원하면 dd
같은 문제가 다시 발생합니다. [ dd
디스크를 포맷하거나 채우기 전에 백업해 두었습니다 0
.]
그러면 블록 크기에 문제가 있는 것 같은데, 정확한 문제는 무엇인가요? 이 문제를 gparted
극복하는 방법은 무엇입니까 lUbuntu
? 다른 해결책이 있나요?
나는 또한 gparted
성공하지 못한 채 Fedora 27에서 컴파일을 시도했습니다.
산출gdisk -l /dev/sdb
Found valid GPT with protective MBR; using GPT.
Disk /dev/sdb: 31277232 sectors, 14.9 GiB
Model: Extreme
Sector size (logical/physical): 512/512 bytes
Disk identifier (GUID): 493A4183-68C3-4027-81AB-C48B76EDA317
Partition table holds up to 176 entries
Main partition table begins at sector 2 and ends at sector 45
First usable sector is 46, last usable sector is 31277186
Partitions will be aligned on 4-sector boundaries
Total free space is 2129 sectors (1.0 MiB)
Number Start (sector) End (sector) Size Code Name
1 64 219 78.0 KiB 0700 Gap0
2 220 5979 2.8 MiB EF00 EFI boot partition
3 5980 30787 12.1 MiB 0700 Gap1
4 32768 9345023 4.4 GiB 0700
5 9345024 27109375 8.5 GiB 0700
6 27109376 31277055 2.0 GiB 8300
무엇을 gparted
테스트하고 있나요?
어떤 도움이라도 대단히 감사하겠습니다.
노트:나는 경험했다https://askubuntu.com/questions/675649/unable-to-delete-usb-drive-partitions-block-size-error반품
답변1
드라이브에 잔여 ISO 서명이 있는 것 같습니다. 어쩌면 어느 시점에서 .iso 파일 디렉터리를 드라이브에 복사했을 수도 있습니다.
ISO 서명을 제거하려면 다음을 참조하세요.파티션으로 가득 찬 GPT 디스크는 파티션이 없는 iso9660처럼 보입니다.
To resolve this run the following:
sudo wipefs -o 0x8001 /dev/sdb
(It will surgically write zeros over 5 bytes of the ISO signature
without touching the GPT).