Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A How can I access Manjaro without any error? (I had installed two grub-loader)

Most of distros can't boot Manjaro. You have to restore grub-loader of Manjaro. And, when installing multiple linux OS always install Manjaro last. mount /dev/sdyC /mnt mount /dev/sdyB /mnt/boot ...

posted 3y ago by deleted user  ·  edited 3y ago by deleted user

Answer
#2: Post edited by (deleted user) · 2021-07-06T05:47:24Z (almost 3 years ago)
  • Most of distros can't boot Manjaro. You have to restore grub-loader of [Manjaro](https://wiki.manjaro.org/index.php?title=GRUB/Restore_the_GRUB_Bootloader). And, when installing multiple linux OS always install Manjaro last.
  • ```bash
  • mount /dev/sdyC /mnt
  • mount /dev/sdyB /mnt/boot
  • mount /dev/sdyA /mnt/boot/efi
  • manjaro-chroot /mnt /bin/bash
  • manjaro-chroot -a
  • ```
  • <h3>Reinstall GRUB</h3>
  • ```bash
  • pacman -Syu grub
  • ```
  • <h2>BIOS System</h2>
  • ```bash
  • grub-install --force --target=i386-pc --recheck --boot-directory=/boot /dev/sdy
  • grub-mkconfig -o /boot/grub/grub.cfg
  • ```
  • <h3>Reinstall GRUB</h3>
  • ```bash
  • grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=manjaro --recheck
  • grub-mkconfig -o /boot/grub/grub.cfg
  • exit
  • sudo reboot now
  • ```
  • If it doesn't work than, you have to reinstall manjaro again..
  • Most of distros can't boot Manjaro. You have to restore grub-loader of [Manjaro](https://wiki.manjaro.org/index.php?title=GRUB/Restore_the_GRUB_Bootloader). And, when installing multiple linux OS always install Manjaro last.
  • ```bash
  • mount /dev/sdyC /mnt
  • mount /dev/sdyB /mnt/boot
  • mount /dev/sdyA /mnt/boot/efi
  • manjaro-chroot /mnt /bin/bash
  • manjaro-chroot -a
  • ```
  • <h3>Reinstall GRUB</h3>
  • ```bash
  • pacman -Syu grub
  • ```
  • <h2>BIOS System</h2>
  • ```bash
  • grub-install --force --target=i386-pc --recheck --boot-directory=/boot /dev/sdy
  • grub-mkconfig -o /boot/grub/grub.cfg
  • ```
  • <h3>Reinstall GRUB</h3>
  • ```bash
  • grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=manjaro --recheck
  • grub-mkconfig -o /boot/grub/grub.cfg
  • exit
  • sudo reboot now
  • ```
  • If it doesn't work than, you have to reinstall manjaro again..
#1: Initial revision by (deleted user) · 2021-07-06T05:46:54Z (almost 3 years ago)
Most of distros can't boot Manjaro. You have to restore grub-loader of [Manjaro](https://wiki.manjaro.org/index.php?title=GRUB/Restore_the_GRUB_Bootloader). And, when installing multiple linux OS always install Manjaro last. 

```bash
mount /dev/sdyC /mnt
mount /dev/sdyB /mnt/boot
mount /dev/sdyA /mnt/boot/efi
manjaro-chroot /mnt /bin/bash
manjaro-chroot -a
```

<h3>Reinstall GRUB</h3>
```bash
pacman -Syu grub
```
<h2>BIOS System</h2>

```bash
grub-install --force --target=i386-pc --recheck --boot-directory=/boot /dev/sdy
grub-mkconfig -o /boot/grub/grub.cfg
```

<h3>Reinstall GRUB</h3>

```bash
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=manjaro --recheck
grub-mkconfig -o /boot/grub/grub.cfg
exit
sudo reboot now
```


If it doesn't work than, you have to reinstall manjaro again..