partedでコマンドラインを使用して起動可能なパーティションを設定するには?
理想的には、ブートするパーティションを簡単に選択できるように番号付きのリストが必要です。
ベストアンサー1
私はfdiskを使います。この方法を適用する前に、Live 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を起動可能にするには1を入力し、2番目のパーティションを起動可能にするには2を入力する必要があります。
このように「w」を使って修正してください。
Command (m for help): w
ディスクテーブルを変更し、必要なパーティションを起動可能にするために使用されます。
お役に立てば幸い