Ubuntu Forcing HDMI Output on Boot if Monitor disconnected The Next CEO of Stack OverflowSetting up HDMI output from Linux consoleBoot resolution change in initramfs on laptop monitor and HDMI monitorIntel HDMI monitor not recognizedSetting monitor active with HDMI SplitterLinux HDMI - no output after bootingHow to detect if HDMI Monitor is switched off in Ubuntu?Disconnected monitor is still reported as connectedUbuntu 16.04 can not recognize HDMI-monitor, but Ubuntu 17.10 canHDMI disconnectedHDMI Not detected / HDMI Disconnected
Is it a bad idea to plug the other end of ESD strap to wall ground?
Is this a new Fibonacci Identity?
logical reads on global temp table, but not on session-level temp table
Is it reasonable to ask other researchers to send me their previous grant applications?
Creating a script with console commands
pgfplots: How to draw a tangent graph below two others?
"Eavesdropping" vs "Listen in on"
How to implement Comparable so it is consistent with identity-equality
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
How dangerous is XSS
Are British MPs missing the point, with these 'Indicative Votes'?
Find a path from s to t using as few red nodes as possible
Early programmable calculators with RS-232
Does Germany produce more waste than the US?
Is a linearly independent set whose span is dense a Schauder basis?
How should I connect my cat5 cable to connectors having an orange-green line?
Could a dragon use its wings to swim?
Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?
Identify and count spells (Distinctive events within each group)
Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact
Strange use of "whether ... than ..." in official text
How can I prove that a state of equilibrium is unstable?
Why did early computer designers eschew integers?
Was the Stack Exchange "Happy April Fools" page fitting with the 90s code?
Ubuntu Forcing HDMI Output on Boot if Monitor disconnected
The Next CEO of Stack OverflowSetting up HDMI output from Linux consoleBoot resolution change in initramfs on laptop monitor and HDMI monitorIntel HDMI monitor not recognizedSetting monitor active with HDMI SplitterLinux HDMI - no output after bootingHow to detect if HDMI Monitor is switched off in Ubuntu?Disconnected monitor is still reported as connectedUbuntu 16.04 can not recognize HDMI-monitor, but Ubuntu 17.10 canHDMI disconnectedHDMI Not detected / HDMI Disconnected
I have a ubuntu 14.04 server that connects to a A/V Amplifier via HDMI.
The problem is, if the amp has a source selected other than the Ubuntu during boot up of the ubuntu m/c, then when the ubu server source is selected there is no output.
This is the output of xrandr when the m/c IS selected as the A/V source during bootup:
xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 160mm x 90mm
1920x1080 60.0*+ 50.0 59.9 60.1 50.0 30.0 25.0 24.0 60.0 30.0 24.0
1776x1000 50.0 59.9 50.0 25.0 24.0 60.0 30.0
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 disconnected (normal left inverted right x axis y axis)
I have tried executing a xrandr script with CRON during boot, however that does not work:
@reboot /usr/bin/xrandr -d :0 --addmode DFP5 1920x1080; /usr/bin/xrandr -d :0 --output DFP5 --mode 1920x1080;
I also tried modifying the kernel params in /etc/default/grub.conf:
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080D"
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A:1920x1080D"
I tried both HDMI-A and HDMI-A-1 as I see that others have used that ID, but neither work.
After rebooting with the server NOT selected as the A/V source, and running xrandr it appears that CRT is enabled, but not the HDMI Source:
# xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 disconnected (normal left inverted right x axis y axis)
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0*+
1400x1050 60.0
How can I force the HDMI to be enabled and connected during boot, irregardless of whether or not it detects a monitor ?
grub ati hdmi
add a comment |
I have a ubuntu 14.04 server that connects to a A/V Amplifier via HDMI.
The problem is, if the amp has a source selected other than the Ubuntu during boot up of the ubuntu m/c, then when the ubu server source is selected there is no output.
This is the output of xrandr when the m/c IS selected as the A/V source during bootup:
xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 160mm x 90mm
1920x1080 60.0*+ 50.0 59.9 60.1 50.0 30.0 25.0 24.0 60.0 30.0 24.0
1776x1000 50.0 59.9 50.0 25.0 24.0 60.0 30.0
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 disconnected (normal left inverted right x axis y axis)
I have tried executing a xrandr script with CRON during boot, however that does not work:
@reboot /usr/bin/xrandr -d :0 --addmode DFP5 1920x1080; /usr/bin/xrandr -d :0 --output DFP5 --mode 1920x1080;
I also tried modifying the kernel params in /etc/default/grub.conf:
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080D"
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A:1920x1080D"
I tried both HDMI-A and HDMI-A-1 as I see that others have used that ID, but neither work.
After rebooting with the server NOT selected as the A/V source, and running xrandr it appears that CRT is enabled, but not the HDMI Source:
# xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 disconnected (normal left inverted right x axis y axis)
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0*+
1400x1050 60.0
How can I force the HDMI to be enabled and connected during boot, irregardless of whether or not it detects a monitor ?
grub ati hdmi
add a comment |
I have a ubuntu 14.04 server that connects to a A/V Amplifier via HDMI.
The problem is, if the amp has a source selected other than the Ubuntu during boot up of the ubuntu m/c, then when the ubu server source is selected there is no output.
This is the output of xrandr when the m/c IS selected as the A/V source during bootup:
xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 160mm x 90mm
1920x1080 60.0*+ 50.0 59.9 60.1 50.0 30.0 25.0 24.0 60.0 30.0 24.0
1776x1000 50.0 59.9 50.0 25.0 24.0 60.0 30.0
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 disconnected (normal left inverted right x axis y axis)
I have tried executing a xrandr script with CRON during boot, however that does not work:
@reboot /usr/bin/xrandr -d :0 --addmode DFP5 1920x1080; /usr/bin/xrandr -d :0 --output DFP5 --mode 1920x1080;
I also tried modifying the kernel params in /etc/default/grub.conf:
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080D"
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A:1920x1080D"
I tried both HDMI-A and HDMI-A-1 as I see that others have used that ID, but neither work.
After rebooting with the server NOT selected as the A/V source, and running xrandr it appears that CRT is enabled, but not the HDMI Source:
# xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 disconnected (normal left inverted right x axis y axis)
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0*+
1400x1050 60.0
How can I force the HDMI to be enabled and connected during boot, irregardless of whether or not it detects a monitor ?
grub ati hdmi
I have a ubuntu 14.04 server that connects to a A/V Amplifier via HDMI.
The problem is, if the amp has a source selected other than the Ubuntu during boot up of the ubuntu m/c, then when the ubu server source is selected there is no output.
This is the output of xrandr when the m/c IS selected as the A/V source during bootup:
xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 160mm x 90mm
1920x1080 60.0*+ 50.0 59.9 60.1 50.0 30.0 25.0 24.0 60.0 30.0 24.0
1776x1000 50.0 59.9 50.0 25.0 24.0 60.0 30.0
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 disconnected (normal left inverted right x axis y axis)
I have tried executing a xrandr script with CRON during boot, however that does not work:
@reboot /usr/bin/xrandr -d :0 --addmode DFP5 1920x1080; /usr/bin/xrandr -d :0 --output DFP5 --mode 1920x1080;
I also tried modifying the kernel params in /etc/default/grub.conf:
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080D"
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A:1920x1080D"
I tried both HDMI-A and HDMI-A-1 as I see that others have used that ID, but neither work.
After rebooting with the server NOT selected as the A/V source, and running xrandr it appears that CRT is enabled, but not the HDMI Source:
# xrandr -d :0
Screen 0: minimum 320 x 200, current 1600 x 1200, maximum 16384 x 16384
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 disconnected (normal left inverted right x axis y axis)
DFP6 disconnected (normal left inverted right x axis y axis)
CRT1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0*+
1400x1050 60.0
How can I force the HDMI to be enabled and connected during boot, irregardless of whether or not it detects a monitor ?
grub ati hdmi
grub ati hdmi
asked Oct 18 '15 at 2:49
crankshaftcrankshaft
11614
11614
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
This sounds very similar to an issue I had with my monitor connected via HDMI to an NVIDIA GPU running 14.04. The GPU would not boot if the monitor was disconnected. If the monitor is connected, then everything boots fine. We ended up changing a setting that allowed for an empty configuration and it worked fine.
Here is the solution we used:
https://devtalk.nvidia.com/default/topic/793405/embedded-systems/tegra-k1-hdmi-boot-into-desktop-ubuntu/post/4382630/#4382630
Hopefully, this works for you as well. Good luck!
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
add a comment |
I had a similar problem recently and solved it by adding this
to /etc/default/grub
(note the ':
' in front of the 'D
'):
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080@60:D"
and reloading the grub config:
sudo update-grub
More info can be found at https://wiki.archlinux.org/index.php/Kernel_mode_setting
add a comment |
I had the same problem with my Debian 9 install;
service lightdm restart
did the trick for me.
New contributor
add a comment |
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
);
);
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%2funix.stackexchange.com%2fquestions%2f236916%2fubuntu-forcing-hdmi-output-on-boot-if-monitor-disconnected%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
This sounds very similar to an issue I had with my monitor connected via HDMI to an NVIDIA GPU running 14.04. The GPU would not boot if the monitor was disconnected. If the monitor is connected, then everything boots fine. We ended up changing a setting that allowed for an empty configuration and it worked fine.
Here is the solution we used:
https://devtalk.nvidia.com/default/topic/793405/embedded-systems/tegra-k1-hdmi-boot-into-desktop-ubuntu/post/4382630/#4382630
Hopefully, this works for you as well. Good luck!
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
add a comment |
This sounds very similar to an issue I had with my monitor connected via HDMI to an NVIDIA GPU running 14.04. The GPU would not boot if the monitor was disconnected. If the monitor is connected, then everything boots fine. We ended up changing a setting that allowed for an empty configuration and it worked fine.
Here is the solution we used:
https://devtalk.nvidia.com/default/topic/793405/embedded-systems/tegra-k1-hdmi-boot-into-desktop-ubuntu/post/4382630/#4382630
Hopefully, this works for you as well. Good luck!
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
add a comment |
This sounds very similar to an issue I had with my monitor connected via HDMI to an NVIDIA GPU running 14.04. The GPU would not boot if the monitor was disconnected. If the monitor is connected, then everything boots fine. We ended up changing a setting that allowed for an empty configuration and it worked fine.
Here is the solution we used:
https://devtalk.nvidia.com/default/topic/793405/embedded-systems/tegra-k1-hdmi-boot-into-desktop-ubuntu/post/4382630/#4382630
Hopefully, this works for you as well. Good luck!
This sounds very similar to an issue I had with my monitor connected via HDMI to an NVIDIA GPU running 14.04. The GPU would not boot if the monitor was disconnected. If the monitor is connected, then everything boots fine. We ended up changing a setting that allowed for an empty configuration and it worked fine.
Here is the solution we used:
https://devtalk.nvidia.com/default/topic/793405/embedded-systems/tegra-k1-hdmi-boot-into-desktop-ubuntu/post/4382630/#4382630
Hopefully, this works for you as well. Good luck!
answered Nov 17 '15 at 17:24
RoshanRoshan
111
111
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
add a comment |
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
1
1
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
Welcome to Unix & Linux! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
– slm♦
Nov 17 '15 at 17:42
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
It doesn't seem like a solution - in my case I do not have X.org at all, but when I connect a monitor, I do not see the terminal login: prompt without rebooting the machine with the monitor plugged in :( - Anyone?
– Roman Gaufman
Jun 1 '17 at 10:48
add a comment |
I had a similar problem recently and solved it by adding this
to /etc/default/grub
(note the ':
' in front of the 'D
'):
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080@60:D"
and reloading the grub config:
sudo update-grub
More info can be found at https://wiki.archlinux.org/index.php/Kernel_mode_setting
add a comment |
I had a similar problem recently and solved it by adding this
to /etc/default/grub
(note the ':
' in front of the 'D
'):
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080@60:D"
and reloading the grub config:
sudo update-grub
More info can be found at https://wiki.archlinux.org/index.php/Kernel_mode_setting
add a comment |
I had a similar problem recently and solved it by adding this
to /etc/default/grub
(note the ':
' in front of the 'D
'):
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080@60:D"
and reloading the grub config:
sudo update-grub
More info can be found at https://wiki.archlinux.org/index.php/Kernel_mode_setting
I had a similar problem recently and solved it by adding this
to /etc/default/grub
(note the ':
' in front of the 'D
'):
GRUB_CMDLINE_LINUX_DEFAULT="video=HDMI-A-1:1920x1080@60:D"
and reloading the grub config:
sudo update-grub
More info can be found at https://wiki.archlinux.org/index.php/Kernel_mode_setting
edited Dec 20 '18 at 21:26
G-Man
13.6k93770
13.6k93770
answered Dec 20 '18 at 21:12
ekoeko
11
11
add a comment |
add a comment |
I had the same problem with my Debian 9 install;
service lightdm restart
did the trick for me.
New contributor
add a comment |
I had the same problem with my Debian 9 install;
service lightdm restart
did the trick for me.
New contributor
add a comment |
I had the same problem with my Debian 9 install;
service lightdm restart
did the trick for me.
New contributor
I had the same problem with my Debian 9 install;
service lightdm restart
did the trick for me.
New contributor
edited 2 days ago
Jeff Schaller♦
44.4k1162143
44.4k1162143
New contributor
answered 2 days ago
xtsolerxtsoler
1011
1011
New contributor
New contributor
add a comment |
add a comment |
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.
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%2funix.stackexchange.com%2fquestions%2f236916%2fubuntu-forcing-hdmi-output-on-boot-if-monitor-disconnected%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