Cannot boot Linux Mint after installing Windows (First) and Linux Mint (Second)

I can’t boot my Linux Mint after installation of Windows. First I installed Windows and then installed Linux Mint with the option of “Install along with windows”. But after I completed the Mint install only Windows is booting.

I have done some search on the web and found that installing Grub from the Live CD will help on this issue. I have done that also (but I’m not sure whether I have done this correctly). After that Windows is also not booting and I am stuck on this.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

This is the correct way to install grub2 from a Linux LiveCD/USB:

  • sdXY is your / Linux partition (e.g. sda1)
  • sdX is the hard-disk containing the linux partition (e.g. sda)
mount /dev/sdXY /mnt
mount --bind /dev /mnt/dev
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys

chroot /mnt    
grub-install /dev/sdX
update-grub
exit # (Ctrl+D)

umount /mnt/dev
umount /mnt/proc
umount /mnt/sys
umount /mnt

reboot

Method 2

As I understand, you need windows & linux mint get working together. First, find first configuration file(i mean grub.conf), which has working configuration for windows, copy config lines, after that install grub from Live CD, take working config for linux, add new lines to the first config, and replace it on your computer. This should work for you.

Please, if you’ll have any problems see example here

Method 3

The problem is that you installed Linux Mint first and then Windows. Windows overwrote GRUB with its its own bootloader and then GRUB is not in use anymore. It is easier to install Windows first and then Linux so that way your computer’s bootloader is GRUB.

You have a few options:

  1. From Linux Mint Community Tutorial for installing Grub2 and configuration: Boot with a Linux Mint live-CD/live-USB and install grub2, letting Linux set up GRUB for you. Then you would boot into Linux Mint and run a terminal sudo update-grub
  2. Option to add Linux to Windows Bootloader: for instance, try EasyBCD which allows you to add Linux to the boot loader. It’s proprietary but it is free for non-commercial use.

I have used both methods and they both work well. Personally I prefer to use Grub2 and configure and tinker it to my liking with different fonts and images and its open sourced.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x