0

I was updating my nvidia drivers from the ones that came with Ubuntu, then restarted and after it showed the Ubuntu logo it goes to a blank screen with a single blinking dash. I have read other questions like this but the answers did not work. I tried pressing escape to get to the terminal but it just printed a bunch of text and went back to the blinking dash. Control alt F2/3/etc (F10 does the same thing as escape) doesn’t do anything either, either do any of the shift keys. I don’t see how I can get to a terminal (recovery mode) or grub menu. Control alt T does not work either (does the same thing as escape). Basically I just need a way to get into a terminal.

1 Answers1

1

Removing the GDM Nvidia rules works for me, with a similar problem; it may help you.

  1. Boot into a Ubuntu Live ISO, and click Try Ubuntu

  2. Open the "Disks" app

  3. In the left panel, click on your system disk

  4. In the main panel, select your root partition

  5. Click the symbol towards the bottom left to mount the parition

  6. You will see a "Mounted at" link appear next to the the "Contents" label

    enter image description here

  7. Click on this link to open the location in Nautilus

  8. From the Nautilus location bar, click the down arrow, and select "Open in Terminal"

  9. In the terminal type the following

    sudo nano ./lib/udev/rules.d/61-gdm.rules
    

    (Make sure the path starts with ./ because you want to edit the 61-gdm.rules file relative to the current mounted location).

  10. Comment out all of the lines, as shown:

    # disable Wayland on Hi1710 chipsets
    # ATTR{vendor}=="0x19e5", ATTR{device}=="0x1711", RUN+="/usr/libexec/gdm-disable-wayland"
    # disable Wayland when using the proprietary nvidia driver
    # DRIVER=="nvidia", RUN+="/usr/libexec/gdm-disable-wayland"
    # disable Wayland if modesetting is disabled
    # IMPORT{cmdline}="nomodeset", RUN+="/usr/libexec/gdm-disable-wayland"
    

    enter image description here

  11. Type CtrlX, then Y, and then Enter to save your changes and exit Nano

  12. Remove you Live ISO and reboot

Enterprise
  • 12,792