Appearance
Grub Guide
Enable GRUB Menu
If GRUB menu is not showing during boot:
- Edit GRUB configuration:
sh
sudo nano /etc/default/grub
- Change
GRUB_TIMEOUT_STYLE=hidden
to
sh
GRUB_TIMEOUT_STYLE=menu
- Save and update GRUB:
sh
sudo update-grub
Restore GRUB After Windows Installation
- Boot into Manjaro live environment
- Open terminal & access system via chroot
sh
sudo manjaro-chroot -a
- Install GRUB to main drive
sh
grub-install /dev/sda
(Replace /dev/sda with your boot drive) 4. Verify installation
sh
grub-install --recheck /dev/sda
- Update GRUB configuration
sh
update-grub
- Exit chroot and reboot
sh
exit
reboot