How to deal with being unable to boot Ubuntu distributions with a Nvidia discrete or hybrid graphics...
Where is the License file location for Identity Server in Sitecore 9.1?
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
ESPP--any reason not to go all in?
What is the orbit and expected lifetime of Crew Dragon trunk?
What does "rhumatis" mean?
Should I apply for my boss's promotion?
Why do we call complex numbers “numbers” but we don’t consider 2-vectors numbers?
What exactly is the meaning of "fine wine"?
Unidentified signals on FT8 frequencies
Is it a Cyclops number? "Nobody" knows!
What would be the most expensive material to an intergalactic society?
Short story about an infectious indestructible metal bar?
An Undercover Army
What does it take to become a wilderness skills guide as a business?
How would an energy-based "projectile" blow up a spaceship?
Who has more? Ireland or Iceland?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
What does *dead* mean in *What do you mean, dead?*?
Averaging over columns while ignoring zero entries
Precision notation for voltmeters
Too soon for a plot twist?
Why aren't there more Gauls like Obelix?
What is the oldest European royal house?
How to recover against Snake as a heavyweight character?
How to deal with being unable to boot Ubuntu distributions with a Nvidia discrete or hybrid graphics card
Can't detect my graphics card (Nvidia GT 620M) on Xubuntu 11.10 & 12.04Why is Ubuntu unable to mount my hard drive when I use Nvidia Discrete graphics?Is Ubuntu recognizing and/or using my NVIDIA graphics card?Running glmark2 with discrete graphics card: 60 fps capIntegrated Graphics not recognized on Ubuntu 15.04nVidia graphic card disappeared after bug with nvidia-prime (Ubuntu 14.04)How can I switch from intel integrated graphics to nvidia GeForce 940mx without breaking X?Issues running Civ 6 through Nvidia Graphics card on Laptop - Ubuntu 16.04 LtsProblems booting from boot cd or HD with Ubuntu Mate 18.04 LTS 64 bit & Nvidia Geforce GTX 260Ubuntu 16.04 LTS Intel graphics driver not working with nomodeset in grub
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 15 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 15 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