5

I upgraded to Ubuntu 17.10 and wanted to boot with the unity environment, but when I did, I noticed that the keyboard shortcuts like Ctrl+Alt+T for the terminal were not working(only when I boot in unity).

How can I fix that?

Thomas
  • 6,223
B. Amine
  • 680
  • 1
    Experiencing this also, I think it's a generalisation of this bug report, so I've left a comment there. https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1727842 – md_5 Nov 07 '17 at 08:49
  • 1
    I'm having the same problem, don't know any solution yet, but doing this: rm -rf ~/.compiz ~/.config ~/.gconf ~/.gnome* ~/.kde solves the problem temporary for me – Aramil Rey Nov 13 '17 at 09:00
  • It's working temporary, but it's better than nothing. Thanks a lot ! – B. Amine Nov 14 '17 at 17:15
  • 4
    @AramilRey Deleting .config/ will also remove config files for non-related applications, this is a very bad advice! – Murmel Nov 14 '17 at 20:49
  • Oh i didn't notice that, but that's true... okay, i'll just avoid addin' the ~/.config – B. Amine Nov 17 '17 at 11:16
  • 1
    Yes, try removing some of those one at a time and eventually you will know where the problem is – Aramil Rey Nov 28 '17 at 10:02

2 Answers2

-1

As already mentioned in the comments by Aramil Rey, removing the following configuration files seemed to fix the problem:

  • ~/.compiz
  • ~/.gconf
  • ~/.gnome*
  • ~/.kde

And in my case it was a permanent solution and not a temporarily one. For example this can be done by:

mkdir ~/backupFixSO972940
mv ~/.compiz ~/.gconf ~/.gnome* ~/.kde ~/backupFixSO972940

If this does not work, you can also add ~/.config to the list, but be careful as this folder also contains a lot of application related configuration files, thus I advice to make a backup (mv) instead of deleting (rm) all folders directly like from the original solution.

Chai T. Rex
  • 5,193
Murmel
  • 295
-1

This is probably related: Super+L to lock screen not working after upgrade to Ubuntu 17.10

The comments on the bug linked there suggest to switch from LightDM to GDM3 until the bug is fixed.

Run sudo apt-get install gdm, and then your password when prompted, or run sudo dpkg-reconfigure gdm. (Taken from here)