GPT 디스크 레이블의 모든 흔적을 제거합니다.

GPT 디스크 레이블의 모든 흔적을 제거합니다.

부팅 가능한 MBR 장치로 전환하려는 USB 펜 드라이브가 있습니다. 그러나 기록의 어느 시점에서 장치에 GPT가 포함되어 있어 제거할 수 없는 것 같습니다. 달려간 mklabel dos뒤에도 partedgrub-install계속 불평했어

Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet..

어떤 데이터도 보관하고 싶지 않습니다. dd if=/dev/zero of=…전체 드라이브를 0으로 만드는 것보다 빠른 메커니즘을 사용하여 이전 GTP의 모든 흔적을 지우고 싶습니다 . 나는 터미널 기반(명령줄 또는 저주) 접근 방식을 선호하지만 일부 일반적인 무료 그래픽 도구도 작동합니다.

답변1

dd바이올린을 켜고 싶지 않다면 gdisk다음과 같이 할 수 있습니다.

$ sudo gdisk /dev/sdb
GPT fdisk (gdisk) version 0.8.8

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): ?
b   back up GPT data to a file
<snip>
w   write table to disk and exit
x   extra functionality (experts only)
?   print this menu

Command (? for help): x

Expert command (? for help): ?
a   set attributes
<snip>
w   write table to disk and exit
z   zap (destroy) GPT data structures and exit
?   print this menu

Expert command (? for help): z
About to wipe out GPT on /dev/sdb. Proceed? (Y/N): Y
GPT data structures destroyed! You may now partition the disk using fdisk or
other utilities.
Blank out MBR? (Y/N): Y

확인하다:

$ sudo gdisk /dev/sdb
GPT fdisk (gdisk) version 0.8.8

Partition table scan:
  MBR: not present
  BSD: not present
  APM: not present
  GPT: not present

Creating new GPT entries.

Command (? for help): 

답변2

당신은 이것을 할 수 있습니다wipefs:

천을 닦다파일 시스템, raid 또는 파티션 테이블 서명(매직 문자열)은 libblkid에 서명이 표시되지 않도록 지정된 장치에서 제거될 수 있습니다. Wiefs는 파일 시스템 자체나 장치의 다른 데이터를 지우지 않습니다.

답변3

gdisk에서 대화형 메뉴를 탐색하는 대신 단일 명령을 원한다면 다음을 시도해 보세요.

$ sudo sgdisk -Z /dev/sdx

sdx를 해당 디스크 이름으로 바꿉니다. (분명히 - 시스템 디스크의 파티션 정보를 지우지 마십시오.)

관련 정보