How to type and display different languages in Parrot Security OS?
I've tried downloading the SCIM input method program. Normally I should be able to press CTRL-Space to switch languages, however, this hot-key is not working. How to enable Korean language typing and also to be able to display it in the terminal?
language parrotsec
New contributor
add a comment |
I've tried downloading the SCIM input method program. Normally I should be able to press CTRL-Space to switch languages, however, this hot-key is not working. How to enable Korean language typing and also to be able to display it in the terminal?
language parrotsec
New contributor
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What does the commandlocale
prints out?
– Paradox
1 hour ago
add a comment |
I've tried downloading the SCIM input method program. Normally I should be able to press CTRL-Space to switch languages, however, this hot-key is not working. How to enable Korean language typing and also to be able to display it in the terminal?
language parrotsec
New contributor
I've tried downloading the SCIM input method program. Normally I should be able to press CTRL-Space to switch languages, however, this hot-key is not working. How to enable Korean language typing and also to be able to display it in the terminal?
language parrotsec
language parrotsec
New contributor
New contributor
edited 1 min ago
msp9011
4,39844167
4,39844167
New contributor
asked 6 hours ago
user342427user342427
1
1
New contributor
New contributor
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What does the commandlocale
prints out?
– Paradox
1 hour ago
add a comment |
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What does the commandlocale
prints out?
– Paradox
1 hour ago
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What does the command
locale
prints out?– Paradox
1 hour ago
What does the command
locale
prints out?– Paradox
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
Modifying keymaps
Method 1
You can setup keymaps, both for X11 and terminal, by modifying the file etc/default/keyboard
.
If you want to setup English and Korean, and switching between both with ALT+SHIFT, you need to edit the following lines:
XKBLAYOUT="us,ko"
XKBOPTIONS="grp:alt_shift_toggle"
Method 2
You can use setxkbmap
to define different keymaps and how to switch between them, such as following:
$ setxkbmap -layout us,ko -option grp:alt_shift_toggle
The command line above sets two differents keymaps en_US
and ko_KO
and enables to change between both with ALT+SHIFT.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
user342427 is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f507073%2fhow-to-type-and-display-different-languages-in-parrot-security-os%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
Modifying keymaps
Method 1
You can setup keymaps, both for X11 and terminal, by modifying the file etc/default/keyboard
.
If you want to setup English and Korean, and switching between both with ALT+SHIFT, you need to edit the following lines:
XKBLAYOUT="us,ko"
XKBOPTIONS="grp:alt_shift_toggle"
Method 2
You can use setxkbmap
to define different keymaps and how to switch between them, such as following:
$ setxkbmap -layout us,ko -option grp:alt_shift_toggle
The command line above sets two differents keymaps en_US
and ko_KO
and enables to change between both with ALT+SHIFT.
add a comment |
Modifying keymaps
Method 1
You can setup keymaps, both for X11 and terminal, by modifying the file etc/default/keyboard
.
If you want to setup English and Korean, and switching between both with ALT+SHIFT, you need to edit the following lines:
XKBLAYOUT="us,ko"
XKBOPTIONS="grp:alt_shift_toggle"
Method 2
You can use setxkbmap
to define different keymaps and how to switch between them, such as following:
$ setxkbmap -layout us,ko -option grp:alt_shift_toggle
The command line above sets two differents keymaps en_US
and ko_KO
and enables to change between both with ALT+SHIFT.
add a comment |
Modifying keymaps
Method 1
You can setup keymaps, both for X11 and terminal, by modifying the file etc/default/keyboard
.
If you want to setup English and Korean, and switching between both with ALT+SHIFT, you need to edit the following lines:
XKBLAYOUT="us,ko"
XKBOPTIONS="grp:alt_shift_toggle"
Method 2
You can use setxkbmap
to define different keymaps and how to switch between them, such as following:
$ setxkbmap -layout us,ko -option grp:alt_shift_toggle
The command line above sets two differents keymaps en_US
and ko_KO
and enables to change between both with ALT+SHIFT.
Modifying keymaps
Method 1
You can setup keymaps, both for X11 and terminal, by modifying the file etc/default/keyboard
.
If you want to setup English and Korean, and switching between both with ALT+SHIFT, you need to edit the following lines:
XKBLAYOUT="us,ko"
XKBOPTIONS="grp:alt_shift_toggle"
Method 2
You can use setxkbmap
to define different keymaps and how to switch between them, such as following:
$ setxkbmap -layout us,ko -option grp:alt_shift_toggle
The command line above sets two differents keymaps en_US
and ko_KO
and enables to change between both with ALT+SHIFT.
answered 41 mins ago
ParadoxParadox
145111
145111
add a comment |
add a comment |
user342427 is a new contributor. Be nice, and check out our Code of Conduct.
user342427 is a new contributor. Be nice, and check out our Code of Conduct.
user342427 is a new contributor. Be nice, and check out our Code of Conduct.
user342427 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f507073%2fhow-to-type-and-display-different-languages-in-parrot-security-os%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
What do you mean by "be able to display it in the terminal"? The default language being Korean?
– Paradox
3 hours ago
What does the command
locale
prints out?– Paradox
1 hour ago