Jak se zbavit GPT dat z disku

Posted by on Čvc 2, 2013

Nedávno mi v dedikovaném serveru odešel disk. Používám Linux software raid, mdadm. Když jsem chtěl zkopírovat rozdělení disku z toho funkčního na ten nový (sfdisk -d /dev/sda | sfdisk –force /dev/sdb), nastal problém v tom, že nově nainstalovaný měl GPT namísto starého MBR. Zde je návod jak se zbavit GPT a vrátit se k MBR.

  1.  Nainstalovat gdiskJe potřeba nainstalovat gdisk, program, který zvládne pracovat s diskem, který má GPT.aptitude install gdisk
  2. Zrušit GPT data na diskuPustit gdisk se jménem disku jako parametr.gdisk /dev/sda

    GPT fdisk (gdisk) version 0.5.1

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

    Found valid MBR and GPT. Which do you want to use?
    1 – MBR
    2 – GPT
    3 – Create blank GPT

    Your answer: 1

     

  3. gdisk volba „x“Command (? for help): ?
    b       back up GPT data to a file
    c       change a partition’s name
    d       delete a partition
    i       show detailed information on a partition
    l       list known partition types
    n       add a new partition
    o       create a new empty GUID partition table (GPT)
    p       print the partition table
    q       quit without saving changes
    r       recovery and transformation options (experts only)
    s       sort partitions
    t       change a partition’s type code
    v       verify disk
    w       write table to disk and exit
    x       extra functionality (experts only)
    ?       print this menuCommand (? for help): x
  4. gdisk volba „z“Expert command (? for help): y
    a       set attributes
    c       change partition GUID
    e       relocate backup data structures to the end of the disk
    g       change disk GUID
    i       show detailed information on a partition
    m       return to main menu
    n       create a new protective MBR
    o       print protective MBR data
    p       print the partition table
    q       quit without saving changes
    r       recovery and transformation options (experts only)
    s       resize partition table
    v       verify disk
    w       write table to disk and exit
    z       zap (destroy) GPT data structures and exit
    ?       print this menuExpert command (? for help): z
  5. HotovoAbout to wipe out GPT on /dev/sda. Proceed? (Y/N): y
    Blank out MBR? (Y/N): y
    GPT data structures destroyed! You may now partition the disk using fdisk or
    other utilities. Program will now terminate.
  6. Je možná používat běžné nástrojecfdisk /dev/sda
    fdisk -l /dev/sda

Leave a Reply