Use displays connected to different graphic cards
I want to connect two external displays to my laptop running Ubuntu 18.04 LTS.
Setup: My laptop (Dell XPS 17 l702X) has an internal graphics card (Intel) and a dedicated graphics card (NVidia GeForce GT 555M). It also has DisplayPort and HDMI slot. The DisplayPort is connected to the Intel card and the HDMI port is connected to the NVidia card. I am using the proprietary NVidia drivers (nvidia-driver-390).
Problem: If I use HDMI only, I can get an output on the external monitor. Otherwise, I only get an output on the DisplayPort monitor, never on both of them. In the Display settings, only one monitor shows up.
Efforts: I also tried to switch between graphic cards using prime-select
and the "NVidia X Server Settings" tool and also the open X.Org drivers without any success.
Question: How is it possible to make both displays run under Ubuntu?
nvidia graphics multiple-monitors
add a comment |
I want to connect two external displays to my laptop running Ubuntu 18.04 LTS.
Setup: My laptop (Dell XPS 17 l702X) has an internal graphics card (Intel) and a dedicated graphics card (NVidia GeForce GT 555M). It also has DisplayPort and HDMI slot. The DisplayPort is connected to the Intel card and the HDMI port is connected to the NVidia card. I am using the proprietary NVidia drivers (nvidia-driver-390).
Problem: If I use HDMI only, I can get an output on the external monitor. Otherwise, I only get an output on the DisplayPort monitor, never on both of them. In the Display settings, only one monitor shows up.
Efforts: I also tried to switch between graphic cards using prime-select
and the "NVidia X Server Settings" tool and also the open X.Org drivers without any success.
Question: How is it possible to make both displays run under Ubuntu?
nvidia graphics multiple-monitors
add a comment |
I want to connect two external displays to my laptop running Ubuntu 18.04 LTS.
Setup: My laptop (Dell XPS 17 l702X) has an internal graphics card (Intel) and a dedicated graphics card (NVidia GeForce GT 555M). It also has DisplayPort and HDMI slot. The DisplayPort is connected to the Intel card and the HDMI port is connected to the NVidia card. I am using the proprietary NVidia drivers (nvidia-driver-390).
Problem: If I use HDMI only, I can get an output on the external monitor. Otherwise, I only get an output on the DisplayPort monitor, never on both of them. In the Display settings, only one monitor shows up.
Efforts: I also tried to switch between graphic cards using prime-select
and the "NVidia X Server Settings" tool and also the open X.Org drivers without any success.
Question: How is it possible to make both displays run under Ubuntu?
nvidia graphics multiple-monitors
I want to connect two external displays to my laptop running Ubuntu 18.04 LTS.
Setup: My laptop (Dell XPS 17 l702X) has an internal graphics card (Intel) and a dedicated graphics card (NVidia GeForce GT 555M). It also has DisplayPort and HDMI slot. The DisplayPort is connected to the Intel card and the HDMI port is connected to the NVidia card. I am using the proprietary NVidia drivers (nvidia-driver-390).
Problem: If I use HDMI only, I can get an output on the external monitor. Otherwise, I only get an output on the DisplayPort monitor, never on both of them. In the Display settings, only one monitor shows up.
Efforts: I also tried to switch between graphic cards using prime-select
and the "NVidia X Server Settings" tool and also the open X.Org drivers without any success.
Question: How is it possible to make both displays run under Ubuntu?
nvidia graphics multiple-monitors
nvidia graphics multiple-monitors
asked yesterday
Green
212
212
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
That is cause due the laptop screen is running in the low performance intel graphic, you could try to bypass completely the intel graphic and run also the laptop screen under nvidia graphic.
You can be done in a couple of way, first (if possible) disable dinamic graphic from bios or use xrandrd.
Here a guided solution, it is from debian wiki but should work out also in Ubuntu: https://wiki.debian.org/NvidiaGraphicsDrivers/Optimus
Update
Another solution a bit more difficult is to configure manually the xorg server as you want, by a quick research I find out this, may could help you: https://superuser.com/questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux
you have to define two Screen, and assign each Screen to desired device
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
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%2f1106854%2fuse-displays-connected-to-different-graphic-cards%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
That is cause due the laptop screen is running in the low performance intel graphic, you could try to bypass completely the intel graphic and run also the laptop screen under nvidia graphic.
You can be done in a couple of way, first (if possible) disable dinamic graphic from bios or use xrandrd.
Here a guided solution, it is from debian wiki but should work out also in Ubuntu: https://wiki.debian.org/NvidiaGraphicsDrivers/Optimus
Update
Another solution a bit more difficult is to configure manually the xorg server as you want, by a quick research I find out this, may could help you: https://superuser.com/questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux
you have to define two Screen, and assign each Screen to desired device
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
add a comment |
That is cause due the laptop screen is running in the low performance intel graphic, you could try to bypass completely the intel graphic and run also the laptop screen under nvidia graphic.
You can be done in a couple of way, first (if possible) disable dinamic graphic from bios or use xrandrd.
Here a guided solution, it is from debian wiki but should work out also in Ubuntu: https://wiki.debian.org/NvidiaGraphicsDrivers/Optimus
Update
Another solution a bit more difficult is to configure manually the xorg server as you want, by a quick research I find out this, may could help you: https://superuser.com/questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux
you have to define two Screen, and assign each Screen to desired device
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
add a comment |
That is cause due the laptop screen is running in the low performance intel graphic, you could try to bypass completely the intel graphic and run also the laptop screen under nvidia graphic.
You can be done in a couple of way, first (if possible) disable dinamic graphic from bios or use xrandrd.
Here a guided solution, it is from debian wiki but should work out also in Ubuntu: https://wiki.debian.org/NvidiaGraphicsDrivers/Optimus
Update
Another solution a bit more difficult is to configure manually the xorg server as you want, by a quick research I find out this, may could help you: https://superuser.com/questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux
you have to define two Screen, and assign each Screen to desired device
That is cause due the laptop screen is running in the low performance intel graphic, you could try to bypass completely the intel graphic and run also the laptop screen under nvidia graphic.
You can be done in a couple of way, first (if possible) disable dinamic graphic from bios or use xrandrd.
Here a guided solution, it is from debian wiki but should work out also in Ubuntu: https://wiki.debian.org/NvidiaGraphicsDrivers/Optimus
Update
Another solution a bit more difficult is to configure manually the xorg server as you want, by a quick research I find out this, may could help you: https://superuser.com/questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux
you have to define two Screen, and assign each Screen to desired device
answered yesterday
AtomiX84
32018
32018
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
add a comment |
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Sounds promising. I'll try it out and report my results. Thank you.
– Green
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
Good luck, I'm always "fight" with the xorg.conf, I was really happy the day distribution can perform decent video configuration "on the fly" which supersedes, mostly, the xorg.conf
– AtomiX84
yesterday
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1106854%2fuse-displays-connected-to-different-graphic-cards%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