Ctrl Key doesn't work
I have an old keyboard. I like it because it is a mechanical one, just like the old ones. It is so old that it works with a port PS/2.
Thus, some time ago, i decided to buy a conversor from this port to USB.
Well, now I have ubuntu 18.04 and this key and the windows key do not work at all.
i can't combine them (like most of the operations of ctrl+z or ctrl+c ..) and I can't go to the menu with the key because it does not work.
I want to add that there are two buttons (each side of the keyboard), but none of them works.
I heard that maybe is a question of mapping the keyboard, but i never did that, and not sure if maybe it is just broken or what.
Little help please!!
keyboard
add a comment |
I have an old keyboard. I like it because it is a mechanical one, just like the old ones. It is so old that it works with a port PS/2.
Thus, some time ago, i decided to buy a conversor from this port to USB.
Well, now I have ubuntu 18.04 and this key and the windows key do not work at all.
i can't combine them (like most of the operations of ctrl+z or ctrl+c ..) and I can't go to the menu with the key because it does not work.
I want to add that there are two buttons (each side of the keyboard), but none of them works.
I heard that maybe is a question of mapping the keyboard, but i never did that, and not sure if maybe it is just broken or what.
Little help please!!
keyboard
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you usexev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)
– guiverc
Dec 11 '18 at 7:47
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
open a terminal (ctrl+alt+T) and typexev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error,sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)
– guiverc
Dec 11 '18 at 8:14
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...
– guiverc
Dec 11 '18 at 12:24
add a comment |
I have an old keyboard. I like it because it is a mechanical one, just like the old ones. It is so old that it works with a port PS/2.
Thus, some time ago, i decided to buy a conversor from this port to USB.
Well, now I have ubuntu 18.04 and this key and the windows key do not work at all.
i can't combine them (like most of the operations of ctrl+z or ctrl+c ..) and I can't go to the menu with the key because it does not work.
I want to add that there are two buttons (each side of the keyboard), but none of them works.
I heard that maybe is a question of mapping the keyboard, but i never did that, and not sure if maybe it is just broken or what.
Little help please!!
keyboard
I have an old keyboard. I like it because it is a mechanical one, just like the old ones. It is so old that it works with a port PS/2.
Thus, some time ago, i decided to buy a conversor from this port to USB.
Well, now I have ubuntu 18.04 and this key and the windows key do not work at all.
i can't combine them (like most of the operations of ctrl+z or ctrl+c ..) and I can't go to the menu with the key because it does not work.
I want to add that there are two buttons (each side of the keyboard), but none of them works.
I heard that maybe is a question of mapping the keyboard, but i never did that, and not sure if maybe it is just broken or what.
Little help please!!
keyboard
keyboard
asked Dec 11 '18 at 7:44
LenzLenz
114
114
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you usexev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)
– guiverc
Dec 11 '18 at 7:47
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
open a terminal (ctrl+alt+T) and typexev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error,sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)
– guiverc
Dec 11 '18 at 8:14
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...
– guiverc
Dec 11 '18 at 12:24
add a comment |
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you usexev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)
– guiverc
Dec 11 '18 at 7:47
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
open a terminal (ctrl+alt+T) and typexev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error,sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)
– guiverc
Dec 11 '18 at 8:14
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...
– guiverc
Dec 11 '18 at 12:24
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you use
xev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)– guiverc
Dec 11 '18 at 7:47
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you use
xev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)– guiverc
Dec 11 '18 at 7:47
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
open a terminal (ctrl+alt+T) and type
xev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error, sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)– guiverc
Dec 11 '18 at 8:14
open a terminal (ctrl+alt+T) and type
xev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error, sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)– guiverc
Dec 11 '18 at 8:14
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...– guiverc
Dec 11 '18 at 12:24
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...– guiverc
Dec 11 '18 at 12:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1099981%2fctrl-key-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1099981%2fctrl-key-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I too love my old model M keyboards (so old they don't have super keys). I'd suggest you use
xev
to see if the keys are working, xev should show when you hold down CTRL, ALT or combinations (and later when you let them go, including combinations). USB doesn't allow all the combinations PS2 recorded (ps2 allows any key combination, usb only allows a few special keys like ctrl, shift.. but super should still work in combination I'd expect)– guiverc
Dec 11 '18 at 7:47
So Guiverc. I search how to check my keys by using this XEV? I never used it before And no idea what I have to see...
– Lenz
Dec 11 '18 at 7:53
open a terminal (ctrl+alt+T) and type
xev
and you'll see every movement of your mouse (if over the window), and key-press (including letting go of keys) detected. If you hit the key and it does nothing, the key isn't recognized by OS so it's hardware or a bios/uefi issue (& your OS can't fix with config as I doesn't see keypress). If you get command-not-found error,sudo apt install x11-utils
then run (but I believe it's there for diagnostics by default)– guiverc
Dec 11 '18 at 8:14
So, in short, If I type "xev" ( i will check later, but i know it is installed by default) It will let me know if It is a software or hardware issue. If XEV detects it, software. If not, Hardware and I betta throw the keyboard. then, if it is software? what shall I do?
– Lenz
Dec 11 '18 at 11:19
xev
& hit enter. xev is the command that will print contents of X events (so if mouse is over the window it is reported, otherwise keyboard... If you highlight another window it won't see keystrokes, but it's pretty easy to see response from any working keys...– guiverc
Dec 11 '18 at 12:24