Dual Monitor Setup : Grub loader goes to HDTV even if it is turned off Announcing the arrival...
Fundamental Solution of the Pell Equation
What do you call a floor made of glass so you can see through the floor?
How to Make a Beautiful Stacked 3D Plot
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
What is the meaning of the simile “quick as silk”?
Is CEO the profession with the most psychopaths?
How do pianists reach extremely loud dynamics?
Fantasy story; one type of magic grows in power with use, but the more powerful they are, they more they are drawn to travel to their source
Can anything be seen from the center of the Boötes void? How dark would it be?
Is there a kind of relay only consumes power when switching?
Is the Standard Deduction better than Itemized when both are the same amount?
What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV
Using et al. for a last / senior author rather than for a first author
What does the "x" in "x86" represent?
Amount of permutations on an NxNxN Rubik's Cube
Uniqueness of spanning tree on a grid.
Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?
What's the meaning of "fortified infraction restraint"?
Delete nth line from bottom
Crossing US/Canada Border for less than 24 hours
How does the math work when buying airline miles?
How to answer "Have you ever been terminated?"
When was Kai Tak permanently closed to cargo service?
Can an alien society believe that their star system is the universe?
Dual Monitor Setup : Grub loader goes to HDTV even if it is turned off
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Is there any ability to set my primary monitor?How i change Text-mode and GRUB display?Ubuntu does not keep settings for dual-monitor setup, how can I correct this?How can I force primary display output after turning off monitor?Dual Boot: Ubuntu 12.04 and Windows8 Grub doesn't detect Windows and even Boot repair didn't workUbuntu and windows 10 dual boot GRUB shows windows recovery environment loader16.04 installation fails to boot4K UHDTV HDMI half screen flicker and flash on Ubuntu 16.04Ubuntu 18.04 LTS issue with connecting to TV via HDMIUbuntu 18.04 not detecting new monitorsXrandr gone crazy with dual monitor setupSecond monitor goes black after selecting Ubuntu in the GRUB menu
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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
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
grub2 multiple-monitors hdmi
edited Feb 9 '14 at 16:22
Wilf
22k1167131
22k1167131
asked Feb 9 '14 at 15:46
ChimpanzeeAcnebackChimpanzeeAcneback
2612
2612
bumped to the homepage by Community♦ 6 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♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
add a comment |
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.
add a comment |
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/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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
add a comment |
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
add a comment |
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
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
answered Feb 9 '14 at 16:27
WilfWilf
22k1167131
22k1167131
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Feb 13 '15 at 7:56
user378358user378358
1
1
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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