1

I installed Gnome, and unable to login, as only root is set, and disabled, I think after reading on the Internet.

Now how do i get back to the command line, at least so I can deal with that and fix my issues from there? I am unable to bypass the Gnome login screen.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232
Alexander Grosse
  • 93
  • 1
  • 1
  • 4

1 Answers1

1

Pressing CTRL+ALT+F1 should get you to console TTY. You can login from there, and add a regular user for yourself, etc. If that doesn't work, you'll have to boot in single-user mode. Just follow the steps here and then add user using the syntax below:

useradd -m -s /bin/bash userName
passwd userName

where userName is the name of the user to create. You can then reboot into normal mode if you booted in single-user mode or switch consoles to graphical console by hitting ALT+F7

dawebber
  • 121
  • 3