When my ubuntu 13.10 boots the screen goes black and has no response. I used to run on gnome fallback and would like to switch back to it but I can't get to the login screen due to the automatic login. My only access to terminal is the root shell prompt and I've tried to turn off the autologin in GDM from there but it restricts me to read-only. Any help is much appreciated.
Asked
Active
Viewed 2,097 times
1 Answers
0
If you are using LightDM and Unity:
Log in at the tty terminal and run sudo nano /etc/lightdm/lightdm.conf
. It should look something like this:
[SeatDefaults]
greeter-session=unity-greeter
user-session=ubuntu
autologin-user=username
To disable autologin, simply delete the line and save the file. You can also change the user-session to ubuntu-2d
, which should resolve the black screen issue.
If you are using GDM and GNOME:
Log in at the tty terminal and run sudo nano /etc/gdm/custom.conf
. It should look something like this:
[daemon]
TimedLoginEnable=false
AutomaticLoginEnable=true
TimedLogin=username
AutomaticLogin=username
TimedLoginDelay=30
DefaultSession=gnome
To disable autologin, change the AutomaticLoginEnable
line to false
and save the file. You can also change the DefaultSession to gnome-2d
, which should resolve the black screen issue.
unity
tag on your question if you're using GNOME. – Donarsson Feb 22 '14 at 03:12DefaultSession=gnome-2d
. It can't get worse, so it's worth a try. – Donarsson Feb 22 '14 at 17:33