How to deal with being unable to boot Ubuntu distributions with a Nvidia discrete or hybrid graphics card
This pertains to users whose systems have a Nvidia graphics card, dual Intel integrated graphics card (such as the Intel HD Graphics 5xx, 6xx, etc.).
When you boot, you can see GRUB options available but afterwards the system hangs, usually resulting in a black screen.
If you have 'quiet' removed from GRUB, you can see what the system is doing while booting. For Nvidia/Intel problems, it will print a message about software lockup or hang. For Ubuntu distros, holding ALT and PrtScr while typing reisub will safely reboot instead of having to hard shut down.
boot drivers grub2 nvidia
add a comment |
This pertains to users whose systems have a Nvidia graphics card, dual Intel integrated graphics card (such as the Intel HD Graphics 5xx, 6xx, etc.).
When you boot, you can see GRUB options available but afterwards the system hangs, usually resulting in a black screen.
If you have 'quiet' removed from GRUB, you can see what the system is doing while booting. For Nvidia/Intel problems, it will print a message about software lockup or hang. For Ubuntu distros, holding ALT and PrtScr while typing reisub will safely reboot instead of having to hard shut down.
boot drivers grub2 nvidia
add a comment |
This pertains to users whose systems have a Nvidia graphics card, dual Intel integrated graphics card (such as the Intel HD Graphics 5xx, 6xx, etc.).
When you boot, you can see GRUB options available but afterwards the system hangs, usually resulting in a black screen.
If you have 'quiet' removed from GRUB, you can see what the system is doing while booting. For Nvidia/Intel problems, it will print a message about software lockup or hang. For Ubuntu distros, holding ALT and PrtScr while typing reisub will safely reboot instead of having to hard shut down.
boot drivers grub2 nvidia
This pertains to users whose systems have a Nvidia graphics card, dual Intel integrated graphics card (such as the Intel HD Graphics 5xx, 6xx, etc.).
When you boot, you can see GRUB options available but afterwards the system hangs, usually resulting in a black screen.
If you have 'quiet' removed from GRUB, you can see what the system is doing while booting. For Nvidia/Intel problems, it will print a message about software lockup or hang. For Ubuntu distros, holding ALT and PrtScr while typing reisub will safely reboot instead of having to hard shut down.
boot drivers grub2 nvidia
boot drivers grub2 nvidia
asked 22 mins ago
avisitoritseemsavisitoritseems
10110
10110
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
BIOS: Configure settings to allow you to boot from a USB. Start your computer and enter BIOS setup from the splash screen. The key to enter it should be labeled on your BIOS splash screen. Common keys are F2, F10, ESC.
- USB Virtualization: ON - This allows booting an operating system from.
- Boot Mode: Legacy for MBR formatted USBs, UEFI for GPT formatted USBs.
- Secure Boot: Applicable to EFI booting: You may need to disable Secure Boot due to unsigned kernels or non-free Nvidia drivers unless you've signed them yourself.
First boot: getting into GRUB: Some distributions boot into GRUB and allow you to edit options before booting in. For others, there are multiple variations of entering GRUB. I have come across pressing TAB, pressing ESC at the exact nano second, and a few others.
Editing GRUB
Once there, press e to edit configuration.
There should be quiet splash
located there, and right after it type nouveau.modeset=0
, then it should boot fine. quiet splash
was removed for visibility in the screenshot.
Have nouveau.modeset=0
enabled every boot
Open terminal and type sudo nano /etc/default/grub
On the line beginning with GRUB_CMDLINE_LINUX_DEFAULT=
, add nouveau.modeset=0
within the quotes. CTRL + O to save, enter, CTRL + X, then type sudo update-grub
into terminal.
Other options that you can separately try in GRUB are:
nomodeset
i915.modeset=0
i915.modeset=1
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%2f1124197%2fhow-to-deal-with-being-unable-to-boot-ubuntu-distributions-with-a-nvidia-discret%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
BIOS: Configure settings to allow you to boot from a USB. Start your computer and enter BIOS setup from the splash screen. The key to enter it should be labeled on your BIOS splash screen. Common keys are F2, F10, ESC.
- USB Virtualization: ON - This allows booting an operating system from.
- Boot Mode: Legacy for MBR formatted USBs, UEFI for GPT formatted USBs.
- Secure Boot: Applicable to EFI booting: You may need to disable Secure Boot due to unsigned kernels or non-free Nvidia drivers unless you've signed them yourself.
First boot: getting into GRUB: Some distributions boot into GRUB and allow you to edit options before booting in. For others, there are multiple variations of entering GRUB. I have come across pressing TAB, pressing ESC at the exact nano second, and a few others.
Editing GRUB
Once there, press e to edit configuration.
There should be quiet splash
located there, and right after it type nouveau.modeset=0
, then it should boot fine. quiet splash
was removed for visibility in the screenshot.
Have nouveau.modeset=0
enabled every boot
Open terminal and type sudo nano /etc/default/grub
On the line beginning with GRUB_CMDLINE_LINUX_DEFAULT=
, add nouveau.modeset=0
within the quotes. CTRL + O to save, enter, CTRL + X, then type sudo update-grub
into terminal.
Other options that you can separately try in GRUB are:
nomodeset
i915.modeset=0
i915.modeset=1
add a comment |
BIOS: Configure settings to allow you to boot from a USB. Start your computer and enter BIOS setup from the splash screen. The key to enter it should be labeled on your BIOS splash screen. Common keys are F2, F10, ESC.
- USB Virtualization: ON - This allows booting an operating system from.
- Boot Mode: Legacy for MBR formatted USBs, UEFI for GPT formatted USBs.
- Secure Boot: Applicable to EFI booting: You may need to disable Secure Boot due to unsigned kernels or non-free Nvidia drivers unless you've signed them yourself.
First boot: getting into GRUB: Some distributions boot into GRUB and allow you to edit options before booting in. For others, there are multiple variations of entering GRUB. I have come across pressing TAB, pressing ESC at the exact nano second, and a few others.
Editing GRUB
Once there, press e to edit configuration.
There should be quiet splash
located there, and right after it type nouveau.modeset=0
, then it should boot fine. quiet splash
was removed for visibility in the screenshot.
Have nouveau.modeset=0
enabled every boot
Open terminal and type sudo nano /etc/default/grub
On the line beginning with GRUB_CMDLINE_LINUX_DEFAULT=
, add nouveau.modeset=0
within the quotes. CTRL + O to save, enter, CTRL + X, then type sudo update-grub
into terminal.
Other options that you can separately try in GRUB are:
nomodeset
i915.modeset=0
i915.modeset=1
add a comment |
BIOS: Configure settings to allow you to boot from a USB. Start your computer and enter BIOS setup from the splash screen. The key to enter it should be labeled on your BIOS splash screen. Common keys are F2, F10, ESC.
- USB Virtualization: ON - This allows booting an operating system from.
- Boot Mode: Legacy for MBR formatted USBs, UEFI for GPT formatted USBs.
- Secure Boot: Applicable to EFI booting: You may need to disable Secure Boot due to unsigned kernels or non-free Nvidia drivers unless you've signed them yourself.
First boot: getting into GRUB: Some distributions boot into GRUB and allow you to edit options before booting in. For others, there are multiple variations of entering GRUB. I have come across pressing TAB, pressing ESC at the exact nano second, and a few others.
Editing GRUB
Once there, press e to edit configuration.
There should be quiet splash
located there, and right after it type nouveau.modeset=0
, then it should boot fine. quiet splash
was removed for visibility in the screenshot.
Have nouveau.modeset=0
enabled every boot
Open terminal and type sudo nano /etc/default/grub
On the line beginning with GRUB_CMDLINE_LINUX_DEFAULT=
, add nouveau.modeset=0
within the quotes. CTRL + O to save, enter, CTRL + X, then type sudo update-grub
into terminal.
Other options that you can separately try in GRUB are:
nomodeset
i915.modeset=0
i915.modeset=1
BIOS: Configure settings to allow you to boot from a USB. Start your computer and enter BIOS setup from the splash screen. The key to enter it should be labeled on your BIOS splash screen. Common keys are F2, F10, ESC.
- USB Virtualization: ON - This allows booting an operating system from.
- Boot Mode: Legacy for MBR formatted USBs, UEFI for GPT formatted USBs.
- Secure Boot: Applicable to EFI booting: You may need to disable Secure Boot due to unsigned kernels or non-free Nvidia drivers unless you've signed them yourself.
First boot: getting into GRUB: Some distributions boot into GRUB and allow you to edit options before booting in. For others, there are multiple variations of entering GRUB. I have come across pressing TAB, pressing ESC at the exact nano second, and a few others.
Editing GRUB
Once there, press e to edit configuration.
There should be quiet splash
located there, and right after it type nouveau.modeset=0
, then it should boot fine. quiet splash
was removed for visibility in the screenshot.
Have nouveau.modeset=0
enabled every boot
Open terminal and type sudo nano /etc/default/grub
On the line beginning with GRUB_CMDLINE_LINUX_DEFAULT=
, add nouveau.modeset=0
within the quotes. CTRL + O to save, enter, CTRL + X, then type sudo update-grub
into terminal.
Other options that you can separately try in GRUB are:
nomodeset
i915.modeset=0
i915.modeset=1
answered 22 mins ago
avisitoritseemsavisitoritseems
10110
10110
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%2f1124197%2fhow-to-deal-with-being-unable-to-boot-ubuntu-distributions-with-a-nvidia-discret%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