Dual Monitor Setup : Grub loader goes to HDTV even if it is turned offIs there any ability to set my primary monitor?How i change Text-mode and GRUB display?Ubuntu 11.10 GRUB and windows 7Ubuntu does not keep settings for dual-monitor setup, how can I correct this?Dual Boot: Ubuntu 12.04 and Windows8 Grub doesn't detect Windows and even Boot repair didn't workUbuntu 18.04 LTS issue with connecting to TV via HDMI

Water Bottle Rocket Thrust - two calculation methods not matching

How can I curtail abuse of the Illusion wizard's Illusory Reality feature?

Is it possible to listen to a TCP port only with a shell, with no additional tools?

Is it fine to ask this kind of question to the corresponding author of a paper?

Little Endian Number to String Conversion

Is any device installed on airplane to measure wind speed relative to the ground, and its direction?

Why is the intercept changing in a logistic regression when all predictors are standardized?

Chain with double bond or triple bond

Can one use mythology to study the history of a region?

What is this dial on my old SLR for?

Can you pitch an outline?

'Cheddar goes "good" with burgers?' Can "go" be seen as a verb of the senses?

D&D Monsters and Copyright

Wiring a pole barn that is 750' from my main power box

Sanitise a high score table to remove offensive terms / usernames

Why is it so hard to land on The Moon?

Modify real part and leaves imaginary part unchanged

When can a graph be oriented to form a Hasse diagram of a finite poset?

Why is the logical NOT operator in C-style languages "!" and not "~~"?

What powers an aircraft prior to the APU being switched on?

Always show full URL in Safari address bar

How to discipline overeager engineer

Test if two food are the same

Creating chess engine, machine learning vs. traditional engine?



Dual Monitor Setup : Grub loader goes to HDTV even if it is turned off


Is there any ability to set my primary monitor?How i change Text-mode and GRUB display?Ubuntu 11.10 GRUB and windows 7Ubuntu does not keep settings for dual-monitor setup, how can I correct this?Dual Boot: Ubuntu 12.04 and Windows8 Grub doesn't detect Windows and even Boot repair didn't workUbuntu 18.04 LTS issue with connecting to TV via HDMI






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









5

















I'm sorry if this is a repeat but I can't find the answer to this anywhere.



I have a dual boot system with Windows 7 and Ubuntu 12.04. I recently bought an HDTV and connected it to my computer by HDMI. I have it set up so it mirrors my primary monitor.



The Grub boot-loader no longer shows up on my primary display. The Motherboard splash-screen shows up on both displays, then the primary goes blank and the grub-loader pops up on the HDTV. Once I have selected what to boot, my primary blinks back on and everything is fine. My problem is I don't want to have to turn on my HDTV every time I boot up my computer.



Thanks in advance!










share|improve this question


































    5

















    I'm sorry if this is a repeat but I can't find the answer to this anywhere.



    I have a dual boot system with Windows 7 and Ubuntu 12.04. I recently bought an HDTV and connected it to my computer by HDMI. I have it set up so it mirrors my primary monitor.



    The Grub boot-loader no longer shows up on my primary display. The Motherboard splash-screen shows up on both displays, then the primary goes blank and the grub-loader pops up on the HDTV. Once I have selected what to boot, my primary blinks back on and everything is fine. My problem is I don't want to have to turn on my HDTV every time I boot up my computer.



    Thanks in advance!










    share|improve this question






























      5












      5








      5


      2






      I'm sorry if this is a repeat but I can't find the answer to this anywhere.



      I have a dual boot system with Windows 7 and Ubuntu 12.04. I recently bought an HDTV and connected it to my computer by HDMI. I have it set up so it mirrors my primary monitor.



      The Grub boot-loader no longer shows up on my primary display. The Motherboard splash-screen shows up on both displays, then the primary goes blank and the grub-loader pops up on the HDTV. Once I have selected what to boot, my primary blinks back on and everything is fine. My problem is I don't want to have to turn on my HDTV every time I boot up my computer.



      Thanks in advance!










      share|improve this question
















      I'm sorry if this is a repeat but I can't find the answer to this anywhere.



      I have a dual boot system with Windows 7 and Ubuntu 12.04. I recently bought an HDTV and connected it to my computer by HDMI. I have it set up so it mirrors my primary monitor.



      The Grub boot-loader no longer shows up on my primary display. The Motherboard splash-screen shows up on both displays, then the primary goes blank and the grub-loader pops up on the HDTV. Once I have selected what to boot, my primary blinks back on and everything is fine. My problem is I don't want to have to turn on my HDTV every time I boot up my computer.



      Thanks in advance!







      grub2 multiple-monitors hdmi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question



      share|improve this question








      edited Feb 9 '14 at 16:22









      Wilf

      23k11 gold badges75 silver badges137 bronze badges




      23k11 gold badges75 silver badges137 bronze badges










      asked Feb 9 '14 at 15:46









      ChimpanzeeAcnebackChimpanzeeAcneback

      261 silver badge2 bronze badges




      261 silver badge2 bronze badges























          3 Answers
          3






          active

          oldest

          votes


















          0


















          My solution to this would be to get GRUB to automatically boot the kernel you last selected - then you would not need to select anything, and can just leave it to it. To do that, open an editor with the grub configuration file by running this:



          sudo nano /etc/default/grub



          and set this line to saved, and remove any # from the beginning of the line as well:



          GRUB_DEFAULT=saved




          also, set this line to true:



          GRUB_SAVEDEFAULT=true


          Also set this so it dissapears after 2 seconds:



          GRUB_TIMEOUT=2


          If these lines are not in the file, add them in.






          Also, to get rid of GRUB completely, set this to 0:



          GRUB_TIMEOUT=0


          but as it is sometimes useful for GRUB to be shown, to recover the system, or boot to a different kernel, you may want to set this to 1 or 2 seconds, like the above GRUB_TIMEOUT=2.



          you could also hide the menu unless a key is pressed during the 2 seconds time period:



          GRUB_TIMEOUT=0
          GRUB_HIDDEN_TIMEOUT=2





          After making any of the above modifactions, save you changes with Ctrl+O, and exit with Ctrl+X, then run this to update the changes:



          sudo update-grub


          Now, it should automatically select as default the entry you selected previously, and disappear after a timed delay, and hide if you wish it. Reboot and find out.



          More on editing grub here






          share|improve this answer

































            0


















            I had the same problem. In my case grub would appear on both displays with the same resolution (1920X1080) which is not handled by my primary display. So first you want to check if this is the case with you.
            Run terminal enter:



            sudo gedit /etc/default/grub


            Uncomment the line



            #GRUB_TERMINAL=console


            Save and close. Run



            sudo update-grub


            And reboot, you should see console output of grub on both terminals. Hit 'c' to enter commandline. Run



            vbeinfo


            The resolutions which are handled by your video output should be there. In my case 1680X1050X32 was there, but the preferred one by grub was 1920X1080.
            So boot up linux and set the resolution which is acceptable for both displays:
            Run terminal enter:



            sudo gedit /etc/default/grub


            Look for the line



            GRUB_GFXMODE=1680x1050x32


            I set it to 1680X1050X32. In your case it might be different. Save and run



            sudo update-grub


            In case your grub can not handle the resolution it will respond not found during update-grub command.
            After finishing the update, reboot, and you should see a working grub on both displays.






            share|improve this answer

































              0


















              have you tried just swaping the HDMI ports around ? most graphics cards will send a signal to a port set in the carbs bios, if no signal is found it send to the next etc, unit software (drivers) tells it to start doing something else, your HDTV is proberly pluged into a port with more priority then your main display.






              share|improve this answer



























                Your Answer








                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "89"
                ;
                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: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                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/4.0/"u003ecc by-sa 4.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%2faskubuntu.com%2fquestions%2f418607%2fdual-monitor-setup-grub-loader-goes-to-hdtv-even-if-it-is-turned-off%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0


















                My solution to this would be to get GRUB to automatically boot the kernel you last selected - then you would not need to select anything, and can just leave it to it. To do that, open an editor with the grub configuration file by running this:



                sudo nano /etc/default/grub



                and set this line to saved, and remove any # from the beginning of the line as well:



                GRUB_DEFAULT=saved




                also, set this line to true:



                GRUB_SAVEDEFAULT=true


                Also set this so it dissapears after 2 seconds:



                GRUB_TIMEOUT=2


                If these lines are not in the file, add them in.






                Also, to get rid of GRUB completely, set this to 0:



                GRUB_TIMEOUT=0


                but as it is sometimes useful for GRUB to be shown, to recover the system, or boot to a different kernel, you may want to set this to 1 or 2 seconds, like the above GRUB_TIMEOUT=2.



                you could also hide the menu unless a key is pressed during the 2 seconds time period:



                GRUB_TIMEOUT=0
                GRUB_HIDDEN_TIMEOUT=2





                After making any of the above modifactions, save you changes with Ctrl+O, and exit with Ctrl+X, then run this to update the changes:



                sudo update-grub


                Now, it should automatically select as default the entry you selected previously, and disappear after a timed delay, and hide if you wish it. Reboot and find out.



                More on editing grub here






                share|improve this answer






























                  0


















                  My solution to this would be to get GRUB to automatically boot the kernel you last selected - then you would not need to select anything, and can just leave it to it. To do that, open an editor with the grub configuration file by running this:



                  sudo nano /etc/default/grub



                  and set this line to saved, and remove any # from the beginning of the line as well:



                  GRUB_DEFAULT=saved




                  also, set this line to true:



                  GRUB_SAVEDEFAULT=true


                  Also set this so it dissapears after 2 seconds:



                  GRUB_TIMEOUT=2


                  If these lines are not in the file, add them in.






                  Also, to get rid of GRUB completely, set this to 0:



                  GRUB_TIMEOUT=0


                  but as it is sometimes useful for GRUB to be shown, to recover the system, or boot to a different kernel, you may want to set this to 1 or 2 seconds, like the above GRUB_TIMEOUT=2.



                  you could also hide the menu unless a key is pressed during the 2 seconds time period:



                  GRUB_TIMEOUT=0
                  GRUB_HIDDEN_TIMEOUT=2





                  After making any of the above modifactions, save you changes with Ctrl+O, and exit with Ctrl+X, then run this to update the changes:



                  sudo update-grub


                  Now, it should automatically select as default the entry you selected previously, and disappear after a timed delay, and hide if you wish it. Reboot and find out.



                  More on editing grub here






                  share|improve this answer




























                    0














                    0










                    0









                    My solution to this would be to get GRUB to automatically boot the kernel you last selected - then you would not need to select anything, and can just leave it to it. To do that, open an editor with the grub configuration file by running this:



                    sudo nano /etc/default/grub



                    and set this line to saved, and remove any # from the beginning of the line as well:



                    GRUB_DEFAULT=saved




                    also, set this line to true:



                    GRUB_SAVEDEFAULT=true


                    Also set this so it dissapears after 2 seconds:



                    GRUB_TIMEOUT=2


                    If these lines are not in the file, add them in.






                    Also, to get rid of GRUB completely, set this to 0:



                    GRUB_TIMEOUT=0


                    but as it is sometimes useful for GRUB to be shown, to recover the system, or boot to a different kernel, you may want to set this to 1 or 2 seconds, like the above GRUB_TIMEOUT=2.



                    you could also hide the menu unless a key is pressed during the 2 seconds time period:



                    GRUB_TIMEOUT=0
                    GRUB_HIDDEN_TIMEOUT=2





                    After making any of the above modifactions, save you changes with Ctrl+O, and exit with Ctrl+X, then run this to update the changes:



                    sudo update-grub


                    Now, it should automatically select as default the entry you selected previously, and disappear after a timed delay, and hide if you wish it. Reboot and find out.



                    More on editing grub here






                    share|improve this answer














                    My solution to this would be to get GRUB to automatically boot the kernel you last selected - then you would not need to select anything, and can just leave it to it. To do that, open an editor with the grub configuration file by running this:



                    sudo nano /etc/default/grub



                    and set this line to saved, and remove any # from the beginning of the line as well:



                    GRUB_DEFAULT=saved




                    also, set this line to true:



                    GRUB_SAVEDEFAULT=true


                    Also set this so it dissapears after 2 seconds:



                    GRUB_TIMEOUT=2


                    If these lines are not in the file, add them in.






                    Also, to get rid of GRUB completely, set this to 0:



                    GRUB_TIMEOUT=0


                    but as it is sometimes useful for GRUB to be shown, to recover the system, or boot to a different kernel, you may want to set this to 1 or 2 seconds, like the above GRUB_TIMEOUT=2.



                    you could also hide the menu unless a key is pressed during the 2 seconds time period:



                    GRUB_TIMEOUT=0
                    GRUB_HIDDEN_TIMEOUT=2





                    After making any of the above modifactions, save you changes with Ctrl+O, and exit with Ctrl+X, then run this to update the changes:



                    sudo update-grub


                    Now, it should automatically select as default the entry you selected previously, and disappear after a timed delay, and hide if you wish it. Reboot and find out.



                    More on editing grub here







                    share|improve this answer













                    share|improve this answer




                    share|improve this answer



                    share|improve this answer










                    answered Feb 9 '14 at 16:27









                    WilfWilf

                    23k11 gold badges75 silver badges137 bronze badges




                    23k11 gold badges75 silver badges137 bronze badges


























                        0


















                        I had the same problem. In my case grub would appear on both displays with the same resolution (1920X1080) which is not handled by my primary display. So first you want to check if this is the case with you.
                        Run terminal enter:



                        sudo gedit /etc/default/grub


                        Uncomment the line



                        #GRUB_TERMINAL=console


                        Save and close. Run



                        sudo update-grub


                        And reboot, you should see console output of grub on both terminals. Hit 'c' to enter commandline. Run



                        vbeinfo


                        The resolutions which are handled by your video output should be there. In my case 1680X1050X32 was there, but the preferred one by grub was 1920X1080.
                        So boot up linux and set the resolution which is acceptable for both displays:
                        Run terminal enter:



                        sudo gedit /etc/default/grub


                        Look for the line



                        GRUB_GFXMODE=1680x1050x32


                        I set it to 1680X1050X32. In your case it might be different. Save and run



                        sudo update-grub


                        In case your grub can not handle the resolution it will respond not found during update-grub command.
                        After finishing the update, reboot, and you should see a working grub on both displays.






                        share|improve this answer






























                          0


















                          I had the same problem. In my case grub would appear on both displays with the same resolution (1920X1080) which is not handled by my primary display. So first you want to check if this is the case with you.
                          Run terminal enter:



                          sudo gedit /etc/default/grub


                          Uncomment the line



                          #GRUB_TERMINAL=console


                          Save and close. Run



                          sudo update-grub


                          And reboot, you should see console output of grub on both terminals. Hit 'c' to enter commandline. Run



                          vbeinfo


                          The resolutions which are handled by your video output should be there. In my case 1680X1050X32 was there, but the preferred one by grub was 1920X1080.
                          So boot up linux and set the resolution which is acceptable for both displays:
                          Run terminal enter:



                          sudo gedit /etc/default/grub


                          Look for the line



                          GRUB_GFXMODE=1680x1050x32


                          I set it to 1680X1050X32. In your case it might be different. Save and run



                          sudo update-grub


                          In case your grub can not handle the resolution it will respond not found during update-grub command.
                          After finishing the update, reboot, and you should see a working grub on both displays.






                          share|improve this answer




























                            0














                            0










                            0









                            I had the same problem. In my case grub would appear on both displays with the same resolution (1920X1080) which is not handled by my primary display. So first you want to check if this is the case with you.
                            Run terminal enter:



                            sudo gedit /etc/default/grub


                            Uncomment the line



                            #GRUB_TERMINAL=console


                            Save and close. Run



                            sudo update-grub


                            And reboot, you should see console output of grub on both terminals. Hit 'c' to enter commandline. Run



                            vbeinfo


                            The resolutions which are handled by your video output should be there. In my case 1680X1050X32 was there, but the preferred one by grub was 1920X1080.
                            So boot up linux and set the resolution which is acceptable for both displays:
                            Run terminal enter:



                            sudo gedit /etc/default/grub


                            Look for the line



                            GRUB_GFXMODE=1680x1050x32


                            I set it to 1680X1050X32. In your case it might be different. Save and run



                            sudo update-grub


                            In case your grub can not handle the resolution it will respond not found during update-grub command.
                            After finishing the update, reboot, and you should see a working grub on both displays.






                            share|improve this answer














                            I had the same problem. In my case grub would appear on both displays with the same resolution (1920X1080) which is not handled by my primary display. So first you want to check if this is the case with you.
                            Run terminal enter:



                            sudo gedit /etc/default/grub


                            Uncomment the line



                            #GRUB_TERMINAL=console


                            Save and close. Run



                            sudo update-grub


                            And reboot, you should see console output of grub on both terminals. Hit 'c' to enter commandline. Run



                            vbeinfo


                            The resolutions which are handled by your video output should be there. In my case 1680X1050X32 was there, but the preferred one by grub was 1920X1080.
                            So boot up linux and set the resolution which is acceptable for both displays:
                            Run terminal enter:



                            sudo gedit /etc/default/grub


                            Look for the line



                            GRUB_GFXMODE=1680x1050x32


                            I set it to 1680X1050X32. In your case it might be different. Save and run



                            sudo update-grub


                            In case your grub can not handle the resolution it will respond not found during update-grub command.
                            After finishing the update, reboot, and you should see a working grub on both displays.







                            share|improve this answer













                            share|improve this answer




                            share|improve this answer



                            share|improve this answer










                            answered Feb 13 '15 at 7:56









                            user378358user378358

                            1




                            1
























                                0


















                                have you tried just swaping the HDMI ports around ? most graphics cards will send a signal to a port set in the carbs bios, if no signal is found it send to the next etc, unit software (drivers) tells it to start doing something else, your HDTV is proberly pluged into a port with more priority then your main display.






                                share|improve this answer






























                                  0


















                                  have you tried just swaping the HDMI ports around ? most graphics cards will send a signal to a port set in the carbs bios, if no signal is found it send to the next etc, unit software (drivers) tells it to start doing something else, your HDTV is proberly pluged into a port with more priority then your main display.






                                  share|improve this answer




























                                    0














                                    0










                                    0









                                    have you tried just swaping the HDMI ports around ? most graphics cards will send a signal to a port set in the carbs bios, if no signal is found it send to the next etc, unit software (drivers) tells it to start doing something else, your HDTV is proberly pluged into a port with more priority then your main display.






                                    share|improve this answer














                                    have you tried just swaping the HDMI ports around ? most graphics cards will send a signal to a port set in the carbs bios, if no signal is found it send to the next etc, unit software (drivers) tells it to start doing something else, your HDTV is proberly pluged into a port with more priority then your main display.







                                    share|improve this answer













                                    share|improve this answer




                                    share|improve this answer



                                    share|improve this answer










                                    answered Jun 28 at 12:32









                                    AaronAaron

                                    11 bronze badge




                                    11 bronze badge































                                        draft saved

                                        draft discarded















































                                        Thanks for contributing an answer to Ask Ubuntu!


                                        • 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%2faskubuntu.com%2fquestions%2f418607%2fdual-monitor-setup-grub-loader-goes-to-hdtv-even-if-it-is-turned-off%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

                                        Tamil (spriik) Luke uk diar | Nawigatjuun

                                        Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                                        Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?