LINUX LITE 7.2 FINAL RELEASED - SEE RELEASE ANNOUNCEMENTS SECTION FOR DETAILS


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Edited grub - cant boot LL
#14
I believe you only need to make one small change to make the grub menu appear on boot.  Try the following using a terminal once booted into live LL.

Mount the installed root partition to the live environment.
Code:
sudo mount /dev/sda5 /mnt

Now we'll chroot into your installed system, make change to the grub file, then update grub.

Do the following to chroot into the system.
Code:
for i in /dev /dev/pts /proc /sys; do sudo mount -B $i /mnt$i; done
sudo chroot /mnt

This command will open the grub file with the text editor.  (No sudo at beginning of command because your are already operating as root at this moment.)  If you see various error messages pop-up in the terminal, just ignore them.
Code:
leafpad /etc/default/grub

In the opened file, just change the following line to what I have in RED.
GRUB_TIMEOUT=5

Save the file and close the text editor.

Back in terminal do:
Code:
sudo update-grub

Now exit from chroot environment and unmount everything.  (Each line below is a separate command -- do one at a time.)
Code:
exit
for i in /sys /proc /dev/pts /dev; do sudo umount /mnt$i; done
sudo umount /mnt

Close terminal, shutdown/reboot without the LL dvd/usb and hopefully you now see the grub menu -- should display with a 5 second countdown before it boots the default Windows entry.
Try Linux Beginner Search Engine for answers to Linux questions.
Reply


Messages In This Thread
Edited grub - cant boot LL - by thoughtinstinct - 08-27-2016, 04:18 PM
Re: Edited grub - cant boot LL - by torreydale - 08-27-2016, 05:03 PM
Re: Edited grub - cant boot LL - by trinidad - 08-27-2016, 06:12 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-27-2016, 08:11 PM
Re: Edited grub - cant boot LL - by trinidad - 08-27-2016, 10:25 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 06:58 AM
Re: Edited grub - cant boot LL - by trinidad - 08-28-2016, 02:13 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 02:28 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 02:51 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 03:50 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 05:36 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-28-2016, 07:12 PM
Re: Edited grub - cant boot LL - by gold_finger - 08-29-2016, 03:46 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)