Hi. How to replace grub to syslinux?
PHP Code:
continue@localhost:~> sudo fdisk -l /dev/sda
Disk /dev/sda: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: ST1000LM024 HN-M
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x01fab33c
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 1682366463 1682364416 802.2G 7 HPFS/NTFS/exFAT
/dev/sda2 1682366464 1934024703 251658240 120G 83 Linux
/dev/sda3 1934024704 1953525167 19500464 9.3G 82 Linux swap / Solaris
How i tried to do:
PHP Code:
sudo mkdir /boot/syslinux
PHP Code:
sudo syslinux --install /dev/sda1
PHP Code:
sudo cp /usr/share/syslinux/*.c32 /boot/syslinux
Write mbr:
PHP Code:
sudo dd bs=440 conv=notrunc count=1 if=/usr/share/syslinux/mbr.bin of=/dev/sda
On boot was getting:
PHP Code:
Failed to load ldlinux.c32
Boot failed: please change disks and press a key to continue.
Bookmarks