I currently have nomodeset enabled every time I boot up (I added it using sudo /etc/default/grub and then sudo update-grub) in order to fix a blackscreen issue regarding my nvidia gfx card.
Now,I have problems with suspend mode not working and brightness controller not functioning which is expected. Using e in the grub bootloader and changing nomodeset to nouveau.modeset=0 fixed all of these problems (no blackscreen too), but now I have a new one: I can't seem to remove nomodeset permanently from grub. I was able to add nouveau.modeset=0 successfully, but nomodeset still stays as a boog flag even after using sudo grub-update. What's even more weird is if I view /etc/default/grub in nano, nomodeset isn't shown here, yet it's flag is still present in the grub bootloader when pressing e.
Is there any way to completely remove nomodeset from my boot flags?
sudo nano /etc/default/grub
and thensudo update-grub
. With nVidia you should only need nomodeset until you install correct nVidia driver from Ubuntu repository. https://askubuntu.com/questions/61396/how-do-i-install-the-nvidia-drivers – oldfred Nov 04 '18 at 17:36sudo grub-update
butsudo update-grub
. – mook765 Nov 04 '18 at 19:09