in windows there is a program called keyboard jedi that shows what keys are pressed on the keyboard. is there an equivalent for linux?

link|improve this question
feedback

migrated from stackoverflow.com Feb 21 '11 at 16:10

This question came from our site for professional and enthusiast programmers.

6 Answers

There is xev program for graphic mode. Man of xev is here http://linux.die.net/man/1/xev On ubuntu/debian it is packed into x11-utils package.

link|improve this answer
feedback

Others have mentioned xev, which is good when you're running X11. When you're at the console, however, showkey is what you want.

link|improve this answer
Welcome to the ranks of the Stack Athletes. – Dennis Williamson Mar 2 '11 at 10:55
feedback

If you are looking for something that graphically shows you what key is pressed currently (perhaps for the corner of a screencast), key-mon might be the ticket.

link|improve this answer
feedback

You'd be wanting xev.

link|improve this answer
feedback

If you're at a shell prompt, you can press Ctrl-v then the key of interest to see what the output is. For example, on my system, pressing Ctrl-v then Right Arrow shows ^[[C which means Escape, Left Bracket, C.

As others have mentioned, xev is the way to go for X11.

link|improve this answer
feedback

Also screenkey. Which is based on mon-key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.