Disabling Nouveau to install NVIDIA on CentOS 7.6 causes blank monitor
I'm trying to install NVIDIA drivers on an embedded system running CentOS 7.6 that has a Quadro P5000 GPU. I'm generally following the instructions outlined here but my monitor does not display anything other than a blinking cursor rebooting after Step 4. Removing the lines that disable Nouveau in my GRUB allow me to boot and log in, so I suspect that is the culprit. Why does that happen when Nouveau is disabled, and how can I install the NVIDIA drivers if I can't seem to disable the Nouveau ones?
EDIT: Finishing the NVIDIA install using ssh on another machine does not solve this problem. I see more steps of the boot process on the monitor when i remove rhgb quiet in my boot parameters, but at some point, no more steps render and I'm left with a blinking cursor
EDIT 2: TL;DR summary: I can't see anything on my monitor on boot after a certain point no matter what I do after I disable Nouveau. I need to disable it in order to install NVIDIA, so I am stuck here.
centos grub2 nvidia nouveau
add a comment |
I'm trying to install NVIDIA drivers on an embedded system running CentOS 7.6 that has a Quadro P5000 GPU. I'm generally following the instructions outlined here but my monitor does not display anything other than a blinking cursor rebooting after Step 4. Removing the lines that disable Nouveau in my GRUB allow me to boot and log in, so I suspect that is the culprit. Why does that happen when Nouveau is disabled, and how can I install the NVIDIA drivers if I can't seem to disable the Nouveau ones?
EDIT: Finishing the NVIDIA install using ssh on another machine does not solve this problem. I see more steps of the boot process on the monitor when i remove rhgb quiet in my boot parameters, but at some point, no more steps render and I'm left with a blinking cursor
EDIT 2: TL;DR summary: I can't see anything on my monitor on boot after a certain point no matter what I do after I disable Nouveau. I need to disable it in order to install NVIDIA, so I am stuck here.
centos grub2 nvidia nouveau
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13
add a comment |
I'm trying to install NVIDIA drivers on an embedded system running CentOS 7.6 that has a Quadro P5000 GPU. I'm generally following the instructions outlined here but my monitor does not display anything other than a blinking cursor rebooting after Step 4. Removing the lines that disable Nouveau in my GRUB allow me to boot and log in, so I suspect that is the culprit. Why does that happen when Nouveau is disabled, and how can I install the NVIDIA drivers if I can't seem to disable the Nouveau ones?
EDIT: Finishing the NVIDIA install using ssh on another machine does not solve this problem. I see more steps of the boot process on the monitor when i remove rhgb quiet in my boot parameters, but at some point, no more steps render and I'm left with a blinking cursor
EDIT 2: TL;DR summary: I can't see anything on my monitor on boot after a certain point no matter what I do after I disable Nouveau. I need to disable it in order to install NVIDIA, so I am stuck here.
centos grub2 nvidia nouveau
I'm trying to install NVIDIA drivers on an embedded system running CentOS 7.6 that has a Quadro P5000 GPU. I'm generally following the instructions outlined here but my monitor does not display anything other than a blinking cursor rebooting after Step 4. Removing the lines that disable Nouveau in my GRUB allow me to boot and log in, so I suspect that is the culprit. Why does that happen when Nouveau is disabled, and how can I install the NVIDIA drivers if I can't seem to disable the Nouveau ones?
EDIT: Finishing the NVIDIA install using ssh on another machine does not solve this problem. I see more steps of the boot process on the monitor when i remove rhgb quiet in my boot parameters, but at some point, no more steps render and I'm left with a blinking cursor
EDIT 2: TL;DR summary: I can't see anything on my monitor on boot after a certain point no matter what I do after I disable Nouveau. I need to disable it in order to install NVIDIA, so I am stuck here.
centos grub2 nvidia nouveau
centos grub2 nvidia nouveau
edited Feb 13 at 19:57
bomberblue
asked Feb 12 at 19:35
bomberbluebomberblue
403
403
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13
add a comment |
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13
add a comment |
1 Answer
1
active
oldest
votes
Turns out this is an issue with the embedded system I am using. The problem is one of the display drivers doesn't work on CentOS 7.3 and up. Blacklisting that driver AND Nouveau allowed me to continue installation without issue.
https://www.supermicro.com/support/faqs/faq.cfm?faq=27624
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f500248%2fdisabling-nouveau-to-install-nvidia-on-centos-7-6-causes-blank-monitor%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
Turns out this is an issue with the embedded system I am using. The problem is one of the display drivers doesn't work on CentOS 7.3 and up. Blacklisting that driver AND Nouveau allowed me to continue installation without issue.
https://www.supermicro.com/support/faqs/faq.cfm?faq=27624
add a comment |
Turns out this is an issue with the embedded system I am using. The problem is one of the display drivers doesn't work on CentOS 7.3 and up. Blacklisting that driver AND Nouveau allowed me to continue installation without issue.
https://www.supermicro.com/support/faqs/faq.cfm?faq=27624
add a comment |
Turns out this is an issue with the embedded system I am using. The problem is one of the display drivers doesn't work on CentOS 7.3 and up. Blacklisting that driver AND Nouveau allowed me to continue installation without issue.
https://www.supermicro.com/support/faqs/faq.cfm?faq=27624
Turns out this is an issue with the embedded system I am using. The problem is one of the display drivers doesn't work on CentOS 7.3 and up. Blacklisting that driver AND Nouveau allowed me to continue installation without issue.
https://www.supermicro.com/support/faqs/faq.cfm?faq=27624
answered Feb 14 at 15:48
bomberbluebomberblue
403
403
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%2f500248%2fdisabling-nouveau-to-install-nvidia-on-centos-7-6-causes-blank-monitor%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
So, does it hang for real? Or is it just booting to a blinking cursor because there is no graphical driver? Those instructions don’t say to rebuild the initrd, nor does it disable nouveau from being loaded, so it’s probably failing to load the nvidia driver. Does switching to a different VT work(control-alt-F2)? Does removing the “rhgb quiet” when adding the modest argument provide more details? In general I usually tell people to not install the nvidia.sh drivers, instead use the elrepo drivers instead, because they handle it for you.
– jsbillings
Feb 12 at 21:50
@jsbillings It does hang. Leaving it on overnight did not solve anything, and switching to a different VT doesn't work. Removing "rhgb quiet" was also no help. I've made a bit of progress since I initially posted, however. I was able to install the NVIDIA drivers by unplugging my monitor into the system and ssh'ing into it from another machine. HOWEVER, I cannot boot into the machine as long as a monitor is plugged in, even with the NVIDIA drivers installed and running.
– bomberblue
Feb 12 at 22:56
@jsbillings Actually, you were right, the system does boot. I just don't see the boot finish when the monitor is plugged in. 'lshw -numeric -C display` lists an ASPEED display device along with my NVIDIA running a driver named asd but the VGA display out of the system only works if the driver running on the NVIDIA is Nouveau and not NVIDIA
– bomberblue
Feb 13 at 19:13