After downloading and installing the automatic updates for ubuntu 16.04, my system crashed. Whenever I boot the computer, a bash screen appears with the header GNU GRUB version 2.02~beta2-36ubuntu3.16. Obviously, the kernel cannot be accessed. Tab delivers a variety of possible commands, but unfortunately I don't know which one to use. I run ubuntu on a Lenovo Yoga machine. It would be great if anyone could help me! Thank you very much
Asked
Active
Viewed 6,200 times
2 Answers
2
Same here. I ended up fixing it using recovery CD to repair grub related stuff. You can take look at this one https://help.ubuntu.com/community/Boot-Repair

thlin
- 21
1
Try:
ls
And you will see, for example:
(hd0) (hd0,msdos3) (hd0,msdos2) (hd0,msdos1) (hd1) (hd1,msdos2) (hd1,msdos1)
Now you can see some disks and partitions. You must list each partition to find where ubuntu is installed. For example:
set prefix=(hd0,1)/boot/grub
set root=(hd0,1)
With these commands, we specify to use the disk (hd0,1) for further commands. After that, you need to check whether there really is on this section what we need. We give the command:
ls /boot/grub
if the answer is a list of all the files in this directory, then the disk and partition are selected correctly. We load modules:
insmod ext2
insmod normal
normal
If everything is ok and working, next step - restore grub in Linux terminal
-
Thanks! However, when I type ls, I get the output "Secure Boot forbids loading module from (hd0, gpt2)/boot/grub/x86-64-efi/ls.mod." So I cannot access or change the directory... is there a trick I can apply here? – LottaFuchs Feb 20 '18 at 11:56
-
I got it working! I just had to disable the secure boot option in the BIOS menu first. You can start it by pressing F2 directly after starting your computer. Just if anyone finds this forum entry and wants to apply it! Thanks again for your help, @Bellerofontessa ! – LottaFuchs Feb 26 '18 at 13:23
4.13.0-xx
: https://askubuntu.com/questions/995819/touchpad-gestures-and-holding-keys-does-not-work/995948#995948 – WinEunuuchs2Unix Feb 07 '18 at 12:09