Skip to content

Commit

Permalink
Update troubleshooting.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r authored Oct 6, 2023
1 parent 55c2fdc commit fe59f17
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/content/docs/en/support/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ Check the `EFI`directory and **be sure** that there are not nested further `EFI`
```
Boot Microsoft
```
If you see also another `EFI` directory or other ones containing the file `grubx64.efi` (i.e., `GRUB` directory), delete these folders. Note that in other distros, `GRUB` folder could have a different name. Don't worry to delete `GRUB`folder, the next command will create it again.
If you see also another `EFI` directory or other ones containing the file `grubx64.efi` (i.e., `GRUB` directory), delete these folders. Note that in other distros, `GRUB` folder could have a different name. Don't worry to delete `GRUB`folder by:
```
rm -rf /boot/efi/EFI/GRUB
```
The next command will create it again.

Then run:
```
Expand All @@ -68,6 +72,12 @@ grub-mkconfig -o /boot/grub/grub.cfg
```
at reboot, be sure that on BIOS the **GRUB** entry has the first priority over Windows Boot Manager. Then, it should work.

Once landed on your working and fixed Linux environment, open the terminal and run:
```
sudo grub-mkconfig -o /boot/grub/grub.cfg
```
to restore the Windows entry in GRUB in case it is missing. Reboot the system to check all GRUB entries are working as intended.

:::danger
Don't remove any other files or folders on mounted directories otherwise they will be deleted also on the related device and the boot manager could break.
:::
Expand Down

0 comments on commit fe59f17

Please sign in to comment.