Horje
how to boot from grub rescue Code Example
how to boot from grub rescue
ls
# This will list all your devices

# Then you have to go through each, type something like this (depends on what is shown by the ls command):
ls (hd0,1)/
ls (hd0,2)/
# ... and so on, until you find:
(hd0,1)/boot/grub OR (hd0,1)/grub
# ... or, in case of "UEFI", it look something like:
(hd0,1)/efi/boot/grub OR (hd0,1)/efi/grub

# Now you have to set the boot parameters accordingly - just type the following (with the correct numbers for your case) and after each line press return:
set prefix=(hd0,1)/grub
# ... or (if grub is in a sub-directory):
set prefix=(hd0,1)/boot/grub

# Then continue with
set root=(hd0,1)
insmod linux
insmod normal
normal

# Now it should boot. Go to the commandline (e.g. start a "terminal") now, and execute:
sudo update-grub
# ... this should correct the missing information and it should boot next time.

# If NOT - you have to go through the steps again an might have to repair or install grub again.




Shell

Related
cpanel reset user home permissions Code Example cpanel reset user home permissions Code Example
show addition and deletion git cli Code Example show addition and deletion git cli Code Example
install ssl lampp in bash terminal Code Example install ssl lampp in bash terminal Code Example
linux hide mouse pointer for touch Code Example linux hide mouse pointer for touch Code Example
fedora insall kdenlive Code Example fedora insall kdenlive Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7