Excuses me
I was re installing mau Garuda Linux last night and dual boot it with Windows 10, but everytime I turn on my device it's not showing dual boot menu, instead, it's booting straight to Windows everytime
I tried a tutorial in youtube but nothing work out
Is there a solution for this?
petsam
14 December 2020 01:32
#2
You have to re-install grub properly, using a Live ISO and chroot
.
For how to chroot, read here
chroot steps in garuda linux
from live garuda usb
sudo mkdir /mnt
sudo mount /dev/sdxy /mnt
sudo garuda-chroot /mnt/@
now you should be chrooted in garuda
if the system is installed in legacy bios
then do the following in the chroot
sudo grub-install /dev/sda
if its installed on efi
first mount the efi partition ie fat32 partition
from inside the chroot
sudo mount /dev/sdxy /boot/efi
then
sudo grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=garuda --rech…
For grub problem, here
Perhaps reinstall
sudo pacman -S grub-btrfs grub os-prober-garuda
sudo grub-install
sudo mkinitcpio -P
sudo update-grub
4 Likes