Linux Lite Forums
How to repair grub - Printable Version

+- Linux Lite Forums (https://www.freecinema2022.gq/forums)
+-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5)
+--- Forum: Tutorials (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=21)
+--- Thread: How to repair grub (/showthread.php?tid=8308)



How to repair grub - AposChatz382 - 05-28-2022

Hello everyone,

I would like to make this a topic that covers most of the basic grub problems and how to repair them

Your GRUB loader might have broken for a couple of reasons:
  • You messed with the boot partition
  • You installed Windows after GNU/Linux
  • Or something else...

Fortunately grub is easy to fix and it's not very complex. If you follow these simple steps it should be fixed in no more than 30 minutes(including USB loading):

First of all boot from a Linux Lite image to live mode.

Then open terminal and type:
Code:
sudo fdisk -l
Now you need to note down two things. First the disk directory "/dev/sd[letter]" and then the Linux partition "/dev/sd[letter][number]"
Example:
/dev/sda - Disk
/dev/sda4 - Partition
Next you need to create a temporary directory
Code:
sudo mkdir /mnt/lnx
Now mount the partition to that directory:
Code:
sudo mount /dev/sda4 /mnt/lnx

Now for the final part:
Code:
sudo grub-install --root-directory=/mnt/lnx /dev/sda

In case you broke grub by using Daz Windows Loader (im not promoting illegal stuff here) just make sure you check "Preserve boot code" and repatch.

I used part of this thread: link
and if you want to learn more about --root-directory option: link

Let me know if i missed something. Also comment if you have some other tips.
Have funĀ  :003: :048:


Re: How to repair grub - Valtam - 05-29-2022

Nice one Smile