Jak se zbavit GPT dat z disku
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.
- Nainstalovat gdiskJe potřeba nainstalovat gdisk, program, který zvládne pracovat s diskem, který má GPT.aptitude install gdisk
- 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: presentFound valid MBR and GPT. Which do you want to use?
1 – MBR
2 – GPT
3 – Create blank GPTYour answer: 1
- 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 - 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 - 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. - Je možná používat běžné nástrojecfdisk /dev/sda
fdisk -l /dev/sda