web-dev-qa-db-fra.com

Définir la ligne de commande de la partition de démarrage

Comment définir la partition de démarrage à l'aide de la ligne de commande dans Parted?

Idéalement, je voudrais une liste numérotée pour pouvoir sélectionner facilement la partition à partir de laquelle démarrer.

10
William

J'utilise fdisk. avant de l'appliquer, je recommande de travailler avec un CD live ou USB et de sauvegarder vos données.

Vérifiez d'abord si une partition amorçable est présente comme dans mon système où "/ dev/sda1" est la partition amorçable:

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

S'il n'y a pas de partition de démarrage, faites comme ceci avec la connexion 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): 

Vous devez taper 1 si vous voulez rendre amorçable la partition 1 ou suivant 2 si vous voulez rendre amorçable la deuxième partition etc ...

et bien la modification avec "w" comme ceci

Command (m for help): w

Pour modifier la table de votre disque et rendre la partition désirée amorçable.

En espérant que cette aide

13
dubis

Avec la commande print, vous gérez le numéro de partition (première colonne). Disons que c'est 1. Pour le rendre amorçable:

(parted) set 1 boot on
8
robert

OS X https://qwiek.wordpress.com/ "fdisk" puis flag 1 pour rendre la première partition amorçable.

0
rogerdpack