- Chroot into your linux instalation
- The easiest way is with
mhwd-chroot
- Install it
yaourt -S mhwd-chroot
- Run it
sudo mhwd-chroot
- DONE, you have chrooted into your linux installation (open a root console of your installed linux OS, is like just open a console with root access)
- Install it
- The easiest way is with
- Restore your GRUB
- Install a new GRUB bootloader with
grub-install /dev/sda
- Recheck to ensure the that installation has completed without any errors
grub-install --recheck /dev/sda
- Finally, configure the freshly installed GRUB bootloader typing
update-grub
- Install a new GRUB bootloader with
I dont use Manjaro distribution any more, the above step may been deprecated.
A solution posted in the comments that is receiving lots of positive feedback made by @y6nH seems to be the right steps to fix it:
These are the steps that worked for me, without having to install any new packages:
- Boot into Manjaro installer
- Open terminal
sudo manjaro-chroot -a
(and select system to mount)grub-install /dev/sda
(it's sda for me; make sure you choose the right drive!)grub-install --recheck /dev/sda
update-grub
exit
- reboot
@y6nH Thank you! this worked perfectly for me after I had to reinstall Windows in my dual-boot setup. One other note, if anyone else has had to do this, you also need to check the flags on your partitions if both Windows and Manjaro are on the same disk - make sure the boot flag is set on your Manjaro partition and remove it from your Windows partition. After I ran the above steps it was still booting directly into Windows until I did that.