19

So I got a problem here. So I installed SDL 2.0.1, everything worked fine, I installed dependencies of sdl as well, so I saw that it didn't worked, so I rebooted my pc, after that I get to gnome, and don't know what do, maybe some help? :)

Wilf
  • 30,194
  • 17
  • 108
  • 164
TheScriptan
  • 335
  • 1
  • 3
  • 11

1 Answers1

28

Normally, can enter a tty with Ctrl+Alt+(F1-F12), and in Ubuntu, and can exit it with Ctrl+Alt+F7. This problem is probably due to the login manager not starting. Try:

sudo service lightdm start

for the default lightdm login manager, and this for Gnome's login manager:

sudo /etc/init.d/gdm start

You can also try entering the user session directly:

startx

Pleases note that some of the above may be guesswork...

Wilf
  • 30,194
  • 17
  • 108
  • 164
  • 1
    Okay I managed to fix it, when I tried startx It worked, but before that I needed to reinstall my xorg server, because it was broken or something. – TheScriptan Dec 19 '13 at 19:35
  • I would recommend getting the login manager working (the bit you normally see to login), as that runs background elements like the screensaver and stuff. – Wilf Dec 19 '13 at 19:36