Respuestas:
Yo uso fdisk. Antes de aplicar esto, recomiendo trabajar con un CD o USB en vivo y hacer una copia de seguridad de sus datos.
Primero verifique si hay alguna partición de arranque como en mi sistema, que "/ dev / sda1" es la partición de arranque:
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
Si no hay ninguna partición de arranque, haga esto con el inicio de sesión raíz:
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):
Debe escribir 1 si desea hacer arrancable la partición 1 o siguiente 2 si quiere hacer arrancable la segunda partición, etc.
y aplica la modificación con "w" como esta
Command (m for help): w
Para modificar la tabla de su disco y hacer que la partición deseada sea de arranque.
Esperando que esa ayuda
parted1
, aunque ya no podía configurarlo manualmente. Posiblemente, elegir el tipo de partición correcto es suficiente.
Con el print
comando puede obtener el número de partición (primera columna). Digamos que es 1. Para hacerlo arrancable:
(parted) set 1 boot on
OS X https://qwiek.wordpress.com/ "fdisk" y luego flag 1
hacer la primera partición de arranque.
set
usa un indicador, pero siempre puede imprimir el diseño del dispositivo (que es una lista numerada) e inspeccionarlo antes establecer cualquier bandera.