10

Terminal shortcut-key is Ctrl+Alt+T. It's normally saved. But when i push shortcut it doesn't run terminal.

How to fix?

Raffa
  • 34,963
sunyung
  • 103
  • 1
  • 1
  • 6

9 Answers9

7

For those of you who have the same problem and the answer here doesn't work either, it might be related to your python upgrade. I changed from python 3.6 to 3.7 and my terminal icon and its shortcut stopped working. I tried many solutions but the only thing that worked was to go back to python 3.6. You can do it this way: right-click on a point in desktop and choose "open terminal". Then type:

sudo update-alternatives --config python3

and choose a version of python3 that is lower than 3.7. If right-click did not work for you, you can either try the terminal from VSCode or XTerminal (you can download it by just searching it).

pegah
  • 199
6

One solution is to add the shortcut manually.

However, the first thing we'll do before adding the shortcut manually is to see if it's there, and if a reset would fix it.

First, go into the Settings.

Second, go to devices, then go to keyboard. Then see if the shortcut is on there. Hit "reset all" and see if it brings it back. Maybe reopen the settings just in case to see if the shortcut comes back. If that fails then do the manual solution:

  1. Return to the keyboard settings.
  2. Go all the way to the bottom of the list where a "+" button exists. Click on it.
  3. After that, give it a name (like "open terminal") and a command, which will be "gnome-terminal"
  4. Then after that, click on the "set shortcut" button, and enter in your hotkey shortcut. Exit out and you're done.

Hopefully that helps.

3
gsettings set org.gnome.desktop.default-applications.terminal exec 'gnome-terminal'

Open the terminal from the Apps and try this.

Munif
  • 31
1

I thought Ctrl+alt+T is not working. But a while ago, I found that it indeed working, when I use the left alt key. It took so long for me to realize the problem was with the right alt key, as I never tried this key combination with the left alt key.

To get the left alt key back to working condition I did the following.

  • Open "Tweaks" (aka "Gnome Tweaks") go to "Keyboard & Mouse" -> "Additional Layout Options" -> "Key to choose the 3rd level" and put a checkmark on "Right Alt never chooses 3rd level".
0

I've had this problem intermittently and the accepted answer has solved it in the past, but not when I tried today! Another solution I've found, which is kind of the opposite of what is suggested here, is the following:

  • install compizconfig-settings-manager: sudo apt-get install compizconfig-settings-manager
  • run ccsm
  • in the "General" settings click on "Commands"
  • tick the plugins check box to "Enable Commands"
  • in the "Commands" tab enter /usr/bin/gnome-terminal into the "Command line 0" box
  • in the "Key Bindings" tab click the button "Disabled" on the "Run Command 0" line and click to the "Grab key combination" button to capture the Ctrl+Alt+T command (or edit it manually and type "t") - this may warn you that it's conflicting with the Gnome settings, but seeing as that's not working anyway...!

Use Ctrl+Alt+T and check that it works!

0

I tried Matt Pitkin's answer and it was even easier than that, all I had to do is uncheck and check the "Enable Commands" tickbox and the commands started working again. I did not need to add any new Key Binding.

0

I have tried all the ways mentioned in all the answers. Nothing did work for me. It's happening since I installed an app called 'terminator', I uninstalled it, and ola, and it's working.

Maybe one should try uninstalling any package/app whose installation might have caused the key combination to stop working.

0

Don't know why but on my Lubuntu running LXDE, the hotkey is changed to Alt-T.

Looks like I can change it using lxhotkey:

touch /tmp/.X0-lock; lxhotkey

but I'd just let it be, let it be, let it be, let it be, whisper words of wisdom, let it be.

0

A recent proposed freedesktop.org specification implementation for launching a user's default terminal app is by the xdg-terminal-exec default terminal execution utility.

Sometimes, the utility package is missing from the system (not installed) ... If this is the case, then install it like so:

sudo apt install xdg-terminal-exec

... and the shortcut keys should work again.

Raffa
  • 34,963