You are not logged in.
My Lenovo 110s only has bl-Helium_amd64, The drive is a 32g eMMC, it wasformatted, there's no remnants of WINDOWS10. I would like to make this a dual boot with a version of puppylinux. I need to modify the current grub boot menu and need some information on how to do it. In the past I would modify the file menu.lst. This doesn't exist. Is there a way to add an entry for another distro?
Offline
Lots of good info out there. For example:
https://help.ubuntu.com/community/Maint … rub2Screen
https://ubuntuforums.org/showthread.php?t=1542338
There are a few different ways of going about this, though. Typing here from Antergos, dual-boot setup with Debian Stable. Antergos was installed second. Here's what I'm using for my custom menu entry (the file is /etc/grub.d/11_antergos, on the sda1 partition -- Debian's root partition):
#!/bin/sh -e
echo "Adding Antergos on sda5"
cat << EOF
menuentry "Antergos on /dev/sda5" --class gnu-linux --class gnu --class os {
set root=(hd0,5)
linux /boot/vmlinuz-linux root=/dev/sda5 rw
initrd /boot/initramfs-linux.img
}
EOF
Offline
There's also some good info here: https://www.dedoimedo.com/computers/grub-2.html
Offline
Thanks, I'll start doing some reading
Offline
If the new distro is already installed to its own partition, then running:
sudo update-grub
ought to pick it up and automatically add it to your grub menu.
You have to run that in the distro which has control of the Master Boot Record, probably BL.
The output of the above command in the terminal ought to show whether the new distro has been detected or not.
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline