web-dev-qa-db-ja.com

ブータブルパーティションコマンドラインの設定

Partedのコマンドラインを使用して起動可能なパーティションを設定するにはどうすればよいですか?

理想的には、番号付きリストが欲しいので、どのパーティションから簡単に起動するかを選択できます。

10
William

私は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

ディスクのテーブルを変更し、目的のパーティションを起動可能にします。

その助けを願って

13
dubis

printコマンドを使用して、パーティション番号(最初の列)を取得します。それを1としましょう。起動可能にするには:

(parted) set 1 boot on
8
robert

OS X https://qwiek.wordpress.com/ "fdisk"次にflag 1最初のパーティションを起動可能にします。

0
rogerdpack