|
6. GRUB / grub4dos
Download the current boot manager plpbt-5.0.15.zip. Extract it to get the boot manager binary program plpbt.bin.
Copy the plpbt.bin file to /boot.
Add to your menu.lst
title Plop Boot Manager
root (hd0,0)
kernel /boot/plpbt.bin
Info: You have to choose the correct root settings in your configuration or you get a "Error: file not found". See also this Forum entry.
You can configure the file plpbt.bin with plpcfgbt.
7. GRUB2
Download the current boot manager plpbt-5.0.15.zip. Extract it to get the boot manager binary program plpbt.bin.
Copy the plpbt.bin file to /boot.
Example file /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 $0
menuentry "Plop Boot Manager" {
set root=(hd0,1)
linux16 /boot/plpbt.bin
}
Then run update-grub2 or update-grub.
When you reboot, you should be able to start the boot manager from your grub menu.
Info: You have to choose the correct root settings in your configuration or you get a "Error: file not found". See also this Forum entry.
You can configure the file plpbt.bin with plpcfgbt.
info:
https://www.plop.at/en/bootmanager/plpbt.bin.html |
|