NVIDIA drivers 410 break Ubuntu 18.04 with GTX 1050
I'm having troubles installing NVIDIA drivers 410 on my Ubuntu 18.04 machine.
I tried installing them via driver manager and it didn't work, so I tried installing them via runfile and it didn't work either.
Searching on the forums I've seen someone who solved by adding nvidia-drm.modeset=1 to /etc/default/grub, nothing changed.
The TTY1 gets stuck always with the drivers. If I boot with just nomodeset I can access others TTY and use the bash (then purge nvidia* and use Noveau).
I've tried booting nvidia-drm.modeset=1 with both quiet splash and nomodeset and it isn't working.
Any suggestion?
boot drivers nvidia 18.04 graphics
add a comment |
I'm having troubles installing NVIDIA drivers 410 on my Ubuntu 18.04 machine.
I tried installing them via driver manager and it didn't work, so I tried installing them via runfile and it didn't work either.
Searching on the forums I've seen someone who solved by adding nvidia-drm.modeset=1 to /etc/default/grub, nothing changed.
The TTY1 gets stuck always with the drivers. If I boot with just nomodeset I can access others TTY and use the bash (then purge nvidia* and use Noveau).
I've tried booting nvidia-drm.modeset=1 with both quiet splash and nomodeset and it isn't working.
Any suggestion?
boot drivers nvidia 18.04 graphics
What kind of error did you get with the GUI installer? You can also trysudo apt install nvidia-current
– Aaron Franke
Jan 23 at 2:54
add a comment |
I'm having troubles installing NVIDIA drivers 410 on my Ubuntu 18.04 machine.
I tried installing them via driver manager and it didn't work, so I tried installing them via runfile and it didn't work either.
Searching on the forums I've seen someone who solved by adding nvidia-drm.modeset=1 to /etc/default/grub, nothing changed.
The TTY1 gets stuck always with the drivers. If I boot with just nomodeset I can access others TTY and use the bash (then purge nvidia* and use Noveau).
I've tried booting nvidia-drm.modeset=1 with both quiet splash and nomodeset and it isn't working.
Any suggestion?
boot drivers nvidia 18.04 graphics
I'm having troubles installing NVIDIA drivers 410 on my Ubuntu 18.04 machine.
I tried installing them via driver manager and it didn't work, so I tried installing them via runfile and it didn't work either.
Searching on the forums I've seen someone who solved by adding nvidia-drm.modeset=1 to /etc/default/grub, nothing changed.
The TTY1 gets stuck always with the drivers. If I boot with just nomodeset I can access others TTY and use the bash (then purge nvidia* and use Noveau).
I've tried booting nvidia-drm.modeset=1 with both quiet splash and nomodeset and it isn't working.
Any suggestion?
boot drivers nvidia 18.04 graphics
boot drivers nvidia 18.04 graphics
edited Dec 30 '18 at 14:35
slhck
724629
724629
asked Oct 31 '18 at 8:08
Alberto ZuriniAlberto Zurini
313
313
What kind of error did you get with the GUI installer? You can also trysudo apt install nvidia-current
– Aaron Franke
Jan 23 at 2:54
add a comment |
What kind of error did you get with the GUI installer? You can also trysudo apt install nvidia-current
– Aaron Franke
Jan 23 at 2:54
What kind of error did you get with the GUI installer? You can also try
sudo apt install nvidia-current– Aaron Franke
Jan 23 at 2:54
What kind of error did you get with the GUI installer? You can also try
sudo apt install nvidia-current– Aaron Franke
Jan 23 at 2:54
add a comment |
1 Answer
1
active
oldest
votes
Okay, I've managed to solve the problem on my own. Steps:
1 Install drivers
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-396
2) edit GRUB
nano /etc/default/grub
Edit GRUB_CMDLINE_LINUX_DEFAULT into
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"
Then:
sudo update-grub
3) edit GDM settings
sudo nano /etc/gdm3/custom.conf
Remove the # from # WaylandEnable=false
Hope this will help someone.
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
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%2f1088805%2fnvidia-drivers-410-break-ubuntu-18-04-with-gtx-1050%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
Okay, I've managed to solve the problem on my own. Steps:
1 Install drivers
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-396
2) edit GRUB
nano /etc/default/grub
Edit GRUB_CMDLINE_LINUX_DEFAULT into
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"
Then:
sudo update-grub
3) edit GDM settings
sudo nano /etc/gdm3/custom.conf
Remove the # from # WaylandEnable=false
Hope this will help someone.
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
add a comment |
Okay, I've managed to solve the problem on my own. Steps:
1 Install drivers
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-396
2) edit GRUB
nano /etc/default/grub
Edit GRUB_CMDLINE_LINUX_DEFAULT into
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"
Then:
sudo update-grub
3) edit GDM settings
sudo nano /etc/gdm3/custom.conf
Remove the # from # WaylandEnable=false
Hope this will help someone.
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
add a comment |
Okay, I've managed to solve the problem on my own. Steps:
1 Install drivers
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-396
2) edit GRUB
nano /etc/default/grub
Edit GRUB_CMDLINE_LINUX_DEFAULT into
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"
Then:
sudo update-grub
3) edit GDM settings
sudo nano /etc/gdm3/custom.conf
Remove the # from # WaylandEnable=false
Hope this will help someone.
Okay, I've managed to solve the problem on my own. Steps:
1 Install drivers
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-396
2) edit GRUB
nano /etc/default/grub
Edit GRUB_CMDLINE_LINUX_DEFAULT into
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"
Then:
sudo update-grub
3) edit GDM settings
sudo nano /etc/gdm3/custom.conf
Remove the # from # WaylandEnable=false
Hope this will help someone.
edited Dec 30 '18 at 14:35
slhck
724629
724629
answered Oct 31 '18 at 15:21
Alberto ZuriniAlberto Zurini
313
313
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
add a comment |
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I tried this, and I can get to the LUKS decryption screen, albeit with the wrong native resolution, then I proceed to the Ubuntu logo, but it stops loading at three of five dots.
– slhck
Dec 30 '18 at 10:16
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
I think this could be an issue of Gnome and nVidia. I've tried using Kubuntu (same as Ubuntu, but with KDE) and it has no problem even with LUKS.
– Alberto Zurini
Dec 31 '18 at 11:35
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%2f1088805%2fnvidia-drivers-410-break-ubuntu-18-04-with-gtx-1050%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
What kind of error did you get with the GUI installer? You can also try
sudo apt install nvidia-current– Aaron Franke
Jan 23 at 2:54