回答:
私はfdiskを使用しています。これを適用する前に、ライブCDまたはUSBを使用してデータをバックアップすることをお勧めします。
最初に、「/ dev / sda1」がブート可能なパーティションであるシステムのように、ブート可能なパーティションが存在するかどうかを確認します。
fdisk -l /dev/sda
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00003256
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 959991807 479994880 83 Linux
/dev/sda2 959993854 976766975 8386561 5 Extended
/dev/sda5 959993856 976766975 8386560 82 Linux swap / Solaris
ブートパーティションがない場合は、rootログインで次のようにします。
fdisk /dev/sda
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Command (m for help): a
Partition number (1-5):
パーティションを起動可能にする場合は1を入力し、2番目のパーティションを起動可能にする場合は2を入力します。
そして、このように「w」で修正を適用します
Command (m for help): w
ディスクのテーブルを変更し、目的のパーティションを起動可能にします。
その助けを願って
parted1
。手動で設定することはできなくても、GPTで起動可能なフラグが自動的に表示されました。おそらく、正しいパーティションタイプを選択するだけで十分です。
print
コマンドを使用して、パーティション番号(最初の列)を変更します。それを1としましょう。起動可能にするには:
(parted) set 1 boot on
OS X https://qwiek.wordpress.com/ "fdisk"次にflag 1
、最初のパーティションを起動可能にします。
set
、常にデバイスレイアウト(番号付きリスト)を印刷して、前に検査することができます。フラグを設定します。