        |
Arreglar un arranque para placas antiguas de un Debian 8 de TCE/PCI
El problema de estos discos es que no tienen el bit de "arrancable" en la partición de boot, y entonces arranca en algunas placas sí y en otras no (en las más antiguas no)
Se conecta el disco con la copiadora a uiharu y como root se hace lo siguiente (NOTA: primero hay que ver en qué sdX lo detecta con un dmesg):
root@uiharu:/home/dario# fdisk /dev/sdf
Command (m for help): p
Disk /dev/sdf: 223.6 GiB, 240057409536 bytes, 468862128 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 33553920 bytes
Disklabel type: dos
Disk identifier: 0xbdef3533
Device Boot Start End Sectors Size Id Type
/dev/sdf1 2048 264191 262144 128M 83 Linux
...
Command (m for help): a
Partition number (1,2,5-7, default 7): 1
The bootable flag on partition 1 is enabled now.
Command (m for help): p
Disk /dev/sdf: 223.6 GiB, 240057409536 bytes, 468862128 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 33553920 bytes
Disklabel type: dos
Disk identifier: 0xbdef3533
Device Boot Start End Sectors Size Id Type
/dev/sdf1 * 2048 264191 262144 128M 83 Linux
...
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
root@uiharu:/home/dario#
|