I tried to solve this issue for about a week now, but can't seem to get around it. During installation had this same problem and nomodeset wasn't the solution, but had to install it switching to the Intel graphics. After the installation I kept using the Intel graphics, was able to boot and install the drivers, switch back to the Nvidia GPU, but still have to use nomodeset during every boot. Now that would be simple enough (and this post explains it how to do so: How do I set 'nomodeset' after I've already installed Ubuntu?), but still every single time I have to press enter at least to get it to boot or edit the grub entry and - without modifying anything - I can boot from there. This is super agonizing because I'm not always there and we tend to use the machine remotely and after every reboot someone has to go there and boot as explain above.
HW specs: Intel 7700 i7, MSI 1080, 16GB ram, 250GB SSD, UEFI only. (would love to post more details, but the box is down again and the office is closed for the weekend...)
I don't think that this is a duplicate as I couldn't find an exact problem and a solution around here, but if it is I apologize in advance.
EDIT: /etc/default/grub/
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="nomodeset"
GRUB_CMDLINE_LINUX=""
/etc/default/grub
. Also please indicate if you ransudo apt upgate-grub
after making the change. – L. D. James Apr 14 '18 at 06:38/etc/default/grub
is: GRUB_DEFAULT=0 GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR=lsb_release -i -s 2> /dev/null || echo Debian
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset" GRUB_CMDLINE_LINUX=""Updated the grub of course and the
– Adathor Apr 14 '18 at 06:51nomodeset
is present in the kernel line after rebooting and checking the entry.cat /proc/cmdline
without manually adding it at boot. You can useCtrl+Alt+F2
to get to a console, if the GUI doesn't work. – L. D. James Apr 14 '18 at 06:54How did you check the entry? to verify the presence during boot? I understand you can't do it now, but when you get to the office run this: cat /proc/cmdline without manually adding it at boot. You can use Ctrl+Alt+F2 to get to a console, if the GUI doesn't work
– L. D. James Apr 14 '18 at 07:01