Solution 1:

You can use bind to bind a key to some function. Here is what I did:

bind '"\ea": ". ~/newScript.sh\n" '

Here newScript.sh is the file which changes the tty and \ea means that whenever Alt+A is pressed, the script executes.

The contents of newScript.sh are:

#! /bin/bash
ttyNum="$(tty)"
ttyNum=$(echo ${ttyNum##*y})
ttyNum=$(( (ttyNum +1) % 7))
chvt $ttyNum

Note that if you want to store the key bindings permanently, you can store them in your `~/.inputrc' file. For more information, you can visit this link: http://www.techrepublic.com/article/find-and-bind-key-sequences-in-bash/5683375

Update: You can store the bind line in your ~/.bashrc file so that you don't have to do it again.

Solution 2:

There is a command for that chvt.

chvt command stands for CHange Virtual Terminal. It takes one option which is a number which tells it the virtual terminal to switch to.

For example, if you are logged in at the first virtual terminal and you want to switch to the 7th where the xserver usually displays the GUI, then run chvt as follows :

chvt 7

And to return to the 1st virtual terminal, type :

chvt 1

So all you need to do is add that command to 7 shortcuts and you can switch.

Solution 3:

EDIT: silly me! Just look into the file /etc/console-setup/remap.inc

You will find everything you need in that file. In any case, explanations are given below.

Unfortunately, "bind" will only work with a shell session.

What you need to do is to change the console mappings. You can do that using the program "loadkeys" (man loadkeys). First, dump the current mappings to see what the format of the file should look like:

dumpkeys > default_keys.txt

Note that you need to do that from a text console and not X, so press Ctrl-Alt-F1 first to switch to one!

Here is an example line from that file:

alt keycode  59 = Console_1

That means that the key that generates code 59, pressed with the modifier "alt" (defined somewhere else in that file) will generate an "Console_1" event -- switching to the virtual console 1.

How to find out which key generates which code? Use the program showkey for that. I start the program and press "F1":

komp $ showkey
keycode  59 press
keycode  59 release

The only way to exit this program is to close your eyes and contemplate the nature of Open Source for ten seconds. Or just to refrain touching the keyboard for ten seconds, that works as well. Use this method to find out what line in the keymap file you would need change the key mappings.

Say, you want to switch to the console 1 using "ctrl 1". You will find out that the keycode for 1 is 2. Save the following line to a file called "myownkeys.txt":

control keycode 2 = Console_1

Switch to a text console (if you haven't done it yet) and run

sudo loadkeys myownkeys.txt

Presto, Ctrl-1 should move you now to console 1. Add more lines to your files for your shortcuts. If you want to make it permanent, you can [EDIT] modify the file /etc/console-setup/remap.inc

By the way, apart from Console_n you also have "Decr_console" and "Incr_Console" -- switch to console on the left and console on the right, respectively. By default they are bound to alt-left and alt-right.