Triple boot: Windows 10, 7, and Ubuntu












0















So my main HD is a windows 10 and I decided to install Ubuntu as a dual boot, and everything was fine. I could choose which one to boot to in the menu on start up, either windows 10 or ubuntu.



Today I have tried to install windows 7 aswell, to have a triple boot. The problem is now, my computer always boots up windows 7 and I don't have the option to choose any other OS. Could someone please help me? The internet on the windows 7 doesn't work either so I feel like I'm completely screwed over.



Thanks in advance for any help.










share|improve this question














bumped to the homepage by Community 23 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    0















    So my main HD is a windows 10 and I decided to install Ubuntu as a dual boot, and everything was fine. I could choose which one to boot to in the menu on start up, either windows 10 or ubuntu.



    Today I have tried to install windows 7 aswell, to have a triple boot. The problem is now, my computer always boots up windows 7 and I don't have the option to choose any other OS. Could someone please help me? The internet on the windows 7 doesn't work either so I feel like I'm completely screwed over.



    Thanks in advance for any help.










    share|improve this question














    bumped to the homepage by Community 23 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0


      1






      So my main HD is a windows 10 and I decided to install Ubuntu as a dual boot, and everything was fine. I could choose which one to boot to in the menu on start up, either windows 10 or ubuntu.



      Today I have tried to install windows 7 aswell, to have a triple boot. The problem is now, my computer always boots up windows 7 and I don't have the option to choose any other OS. Could someone please help me? The internet on the windows 7 doesn't work either so I feel like I'm completely screwed over.



      Thanks in advance for any help.










      share|improve this question














      So my main HD is a windows 10 and I decided to install Ubuntu as a dual boot, and everything was fine. I could choose which one to boot to in the menu on start up, either windows 10 or ubuntu.



      Today I have tried to install windows 7 aswell, to have a triple boot. The problem is now, my computer always boots up windows 7 and I don't have the option to choose any other OS. Could someone please help me? The internet on the windows 7 doesn't work either so I feel like I'm completely screwed over.



      Thanks in advance for any help.







      dual-boot






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 11 '17 at 18:05









      OliverOliver

      11




      11





      bumped to the homepage by Community 23 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 23 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          The issue is bootloaders, where to write them, and how to keep "the one" from being over written.



          Personally I'd run Ubuntu as the only bare-metal OS and use Virtualbox for the Windows systems. Of course, you can do the same iwth Windows 10, and virtualize Win7 and Ubuntu.



          To get back your Ubuntu and Win10 bootloader download the Ubuntu ISO, boot it, open a terminal, mount your Ubuntu / partition, chroot to it, and re-run the grub-install.



          sudo mkdir /rescue-system
          sudo mount /dev/sda5 /rescue-system


          Note - change /dev/sda5 in the previous line to match whatever partition your / partition really is



          sudo mount --bind /dev/ /rescue-system/dev
          sudo chroot /rescue-system
          mount -t proc none /proc
          mount -t sysfs none /sys
          mount -t devpts none /dev/pts
          grub-install /dev/sda


          Then simply exit out of the chroot and reboot.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f370514%2ftriple-boot-windows-10-7-and-ubuntu%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The issue is bootloaders, where to write them, and how to keep "the one" from being over written.



            Personally I'd run Ubuntu as the only bare-metal OS and use Virtualbox for the Windows systems. Of course, you can do the same iwth Windows 10, and virtualize Win7 and Ubuntu.



            To get back your Ubuntu and Win10 bootloader download the Ubuntu ISO, boot it, open a terminal, mount your Ubuntu / partition, chroot to it, and re-run the grub-install.



            sudo mkdir /rescue-system
            sudo mount /dev/sda5 /rescue-system


            Note - change /dev/sda5 in the previous line to match whatever partition your / partition really is



            sudo mount --bind /dev/ /rescue-system/dev
            sudo chroot /rescue-system
            mount -t proc none /proc
            mount -t sysfs none /sys
            mount -t devpts none /dev/pts
            grub-install /dev/sda


            Then simply exit out of the chroot and reboot.






            share|improve this answer




























              0














              The issue is bootloaders, where to write them, and how to keep "the one" from being over written.



              Personally I'd run Ubuntu as the only bare-metal OS and use Virtualbox for the Windows systems. Of course, you can do the same iwth Windows 10, and virtualize Win7 and Ubuntu.



              To get back your Ubuntu and Win10 bootloader download the Ubuntu ISO, boot it, open a terminal, mount your Ubuntu / partition, chroot to it, and re-run the grub-install.



              sudo mkdir /rescue-system
              sudo mount /dev/sda5 /rescue-system


              Note - change /dev/sda5 in the previous line to match whatever partition your / partition really is



              sudo mount --bind /dev/ /rescue-system/dev
              sudo chroot /rescue-system
              mount -t proc none /proc
              mount -t sysfs none /sys
              mount -t devpts none /dev/pts
              grub-install /dev/sda


              Then simply exit out of the chroot and reboot.






              share|improve this answer


























                0












                0








                0







                The issue is bootloaders, where to write them, and how to keep "the one" from being over written.



                Personally I'd run Ubuntu as the only bare-metal OS and use Virtualbox for the Windows systems. Of course, you can do the same iwth Windows 10, and virtualize Win7 and Ubuntu.



                To get back your Ubuntu and Win10 bootloader download the Ubuntu ISO, boot it, open a terminal, mount your Ubuntu / partition, chroot to it, and re-run the grub-install.



                sudo mkdir /rescue-system
                sudo mount /dev/sda5 /rescue-system


                Note - change /dev/sda5 in the previous line to match whatever partition your / partition really is



                sudo mount --bind /dev/ /rescue-system/dev
                sudo chroot /rescue-system
                mount -t proc none /proc
                mount -t sysfs none /sys
                mount -t devpts none /dev/pts
                grub-install /dev/sda


                Then simply exit out of the chroot and reboot.






                share|improve this answer













                The issue is bootloaders, where to write them, and how to keep "the one" from being over written.



                Personally I'd run Ubuntu as the only bare-metal OS and use Virtualbox for the Windows systems. Of course, you can do the same iwth Windows 10, and virtualize Win7 and Ubuntu.



                To get back your Ubuntu and Win10 bootloader download the Ubuntu ISO, boot it, open a terminal, mount your Ubuntu / partition, chroot to it, and re-run the grub-install.



                sudo mkdir /rescue-system
                sudo mount /dev/sda5 /rescue-system


                Note - change /dev/sda5 in the previous line to match whatever partition your / partition really is



                sudo mount --bind /dev/ /rescue-system/dev
                sudo chroot /rescue-system
                mount -t proc none /proc
                mount -t sysfs none /sys
                mount -t devpts none /dev/pts
                grub-install /dev/sda


                Then simply exit out of the chroot and reboot.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 11 '17 at 18:32









                ivanivanivanivan

                3,6721414




                3,6721414






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f370514%2ftriple-boot-windows-10-7-and-ubuntu%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    濃尾地震

                    How to rewrite equation of hyperbola in standard form

                    No ethernet ip address in my vocore2