Keyboard not working properly in terminal
I'm using Ubuntu 12.04.2, and my keyboard doesn't work normally in terminal. When I press the arrow keys, the characters "a", "b", "c", or "d" appear. The Backspace key is also not working.
keyboard command-line 12.04
migrated from stackoverflow.com Jun 25 '13 at 20:08
This question came from our site for professional and enthusiast programmers.
add a comment |
I'm using Ubuntu 12.04.2, and my keyboard doesn't work normally in terminal. When I press the arrow keys, the characters "a", "b", "c", or "d" appear. The Backspace key is also not working.
keyboard command-line 12.04
migrated from stackoverflow.com Jun 25 '13 at 20:08
This question came from our site for professional and enthusiast programmers.
I know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
1
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
1
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14
add a comment |
I'm using Ubuntu 12.04.2, and my keyboard doesn't work normally in terminal. When I press the arrow keys, the characters "a", "b", "c", or "d" appear. The Backspace key is also not working.
keyboard command-line 12.04
I'm using Ubuntu 12.04.2, and my keyboard doesn't work normally in terminal. When I press the arrow keys, the characters "a", "b", "c", or "d" appear. The Backspace key is also not working.
keyboard command-line 12.04
keyboard command-line 12.04
edited Jun 25 '13 at 20:23
bcbc
5,83142866
5,83142866
asked Jun 24 '13 at 11:27
Chinmay Joshi
3829
3829
migrated from stackoverflow.com Jun 25 '13 at 20:08
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Jun 25 '13 at 20:08
This question came from our site for professional and enthusiast programmers.
I know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
1
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
1
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14
add a comment |
I know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
1
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
1
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14
I know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
I know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
1
1
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
1
1
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14
add a comment |
1 Answer
1
active
oldest
votes
By default, Ubuntu will install vim-tiny, a bare-bones version of vim. When you type vi in the terminal, it will start this minimal vim in vi compatible mode by default. From a normal vim user's standpoint, this is horrible, since vi compatible means backspace and all the normal vim behavior will behave in the original vi manner.
so, install vim by typing the command :
sudo apt-get install vim
problem solved !! enjoy programming ;) :)
add a comment |
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%2f312696%2fkeyboard-not-working-properly-in-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
By default, Ubuntu will install vim-tiny, a bare-bones version of vim. When you type vi in the terminal, it will start this minimal vim in vi compatible mode by default. From a normal vim user's standpoint, this is horrible, since vi compatible means backspace and all the normal vim behavior will behave in the original vi manner.
so, install vim by typing the command :
sudo apt-get install vim
problem solved !! enjoy programming ;) :)
add a comment |
By default, Ubuntu will install vim-tiny, a bare-bones version of vim. When you type vi in the terminal, it will start this minimal vim in vi compatible mode by default. From a normal vim user's standpoint, this is horrible, since vi compatible means backspace and all the normal vim behavior will behave in the original vi manner.
so, install vim by typing the command :
sudo apt-get install vim
problem solved !! enjoy programming ;) :)
add a comment |
By default, Ubuntu will install vim-tiny, a bare-bones version of vim. When you type vi in the terminal, it will start this minimal vim in vi compatible mode by default. From a normal vim user's standpoint, this is horrible, since vi compatible means backspace and all the normal vim behavior will behave in the original vi manner.
so, install vim by typing the command :
sudo apt-get install vim
problem solved !! enjoy programming ;) :)
By default, Ubuntu will install vim-tiny, a bare-bones version of vim. When you type vi in the terminal, it will start this minimal vim in vi compatible mode by default. From a normal vim user's standpoint, this is horrible, since vi compatible means backspace and all the normal vim behavior will behave in the original vi manner.
so, install vim by typing the command :
sudo apt-get install vim
problem solved !! enjoy programming ;) :)
edited Nov 23 '13 at 15:56
guntbert
9,098133169
9,098133169
answered Nov 23 '13 at 5:42
user218527
1
1
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f312696%2fkeyboard-not-working-properly-in-terminal%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 know! But there are some commands in terminal. By that keyboard starts working neatly. So I'm looking for them.
– Chinmay Joshi
Jun 24 '13 at 12:10
1
The ALT key on your keyboard is stuck, most likely.
– gertvdijk
Jun 25 '13 at 20:29
1
@gertvdijk That'd explain the ABCD bit, but not backspace failing (alt+backspace deletes previous word, doesn't disable it)
– Jez W
Jul 30 '13 at 11:14