0

I posted a while ago with this problem: https://askubuntu.com/questions/597113/14-10-upgrade-no-access-to-menus-or-sidebar, which I cannot find a workaround, especially as I can't access the Terminal via Ctrl+Alt+ T, and none of the login/passwords that I can think of will get me into the tty terminals. I can't boot into safe mode either.

Does anyone know another way to open a terminal? Is there a file on the computer I can access directly?

dedunu
  • 9,186
rougon
  • 101
  • 1
  • 2

3 Answers3

2

Try pressing Ctrl+Alt+F1. That should allow you to enter tty1. If that doesn't work, try Ctrl+Alt+F2, Ctrl+Alt+F3, etc. etc.

It will say something like:

Ubuntu 14.10 ComputerName tty1

ComputerName Login:

Type your username here and hit enter, and then your password.

You should be able to access tty and go from there.

0

It might be an error in lightdm. Try installing gdm and uninstall lightdm and reboot and see if that works

If that doesnt work uninstall gdm and reinstall lightdm. Reboot. Then enter unity-tweak-tool --reset into tty. Reboot. See if that works

0

Try this fix:

From a terminal:

sudo apt-get update
sudo apt-get install unity
dconf reset -f /org/compiz/

This will reinstall unity and reset the config.

If that doesn't work then:

sudo apt-get update
sudo apt-get install ubuntu-desktop
rm --recursive /home/user/.config/dconf/user

but be aware that this solution will install all of the packages from ubuntu-desktop (including things like gedit, sound utility, archive managers etc.)

dedunu
  • 9,186