Keyboard layout stuck into CZ_german no english layout after update, restore into original EN_us and EL_Gr...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
After Update on Kubuntu 16.04LTS the keyboard layout has changed into CZ_german without any english layout. Thus I want to restore it into US,GR variant.
Due to unexpected keyboard layout change I find it hard to login either via shell or Xorg. Thus the only option is to use either the recovery mode or a live USB.
Thus how I can revocer the keyboard layout into English and Greek one?
kde keyboard-layout input-language
add a comment |
After Update on Kubuntu 16.04LTS the keyboard layout has changed into CZ_german without any english layout. Thus I want to restore it into US,GR variant.
Due to unexpected keyboard layout change I find it hard to login either via shell or Xorg. Thus the only option is to use either the recovery mode or a live USB.
Thus how I can revocer the keyboard layout into English and Greek one?
kde keyboard-layout input-language
add a comment |
After Update on Kubuntu 16.04LTS the keyboard layout has changed into CZ_german without any english layout. Thus I want to restore it into US,GR variant.
Due to unexpected keyboard layout change I find it hard to login either via shell or Xorg. Thus the only option is to use either the recovery mode or a live USB.
Thus how I can revocer the keyboard layout into English and Greek one?
kde keyboard-layout input-language
After Update on Kubuntu 16.04LTS the keyboard layout has changed into CZ_german without any english layout. Thus I want to restore it into US,GR variant.
Due to unexpected keyboard layout change I find it hard to login either via shell or Xorg. Thus the only option is to use either the recovery mode or a live USB.
Thus how I can revocer the keyboard layout into English and Greek one?
kde keyboard-layout input-language
kde keyboard-layout input-language
edited Apr 21 at 17:07
Braiam
52.8k20139226
52.8k20139226
asked Apr 21 at 9:07
Dimitrios DesyllasDimitrios Desyllas
498318
498318
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Boot from a live usb and mount the disk that has the GNU/Linux Installed, keep in mind to mount the partition having the INSTALLED system's root filesystem (and not the root folder from the liveusb distro).
In my case has been the /dev/sda2 and I mounted as:
sudo mount /dev/sda2 /mnt
Using the command sudo fdisk -l
and judging from the size and the type (correct one Linux Filesystem
) you can mount the appropriate partition. In case of a wrongly mounted partition you can unmount it via the command (we are using the cd
command as well in order to make not busy the mounted partition):
cd && sudo umount /mnt
Also In the mounted partition should containe the etc
folder as well.
Having said that now you can nou type the following command:
sudo nano /mnt/etc/default/keyboard
And from:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="cz"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
Change it into:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
In case that the change has been into a desktop session that you are already logeedin then edit the /etc/default/keyboard
directly (as long as you are able to locate the correct layout on the CZ_german layout.)
Save the file and then reboot. Once you login configure the keyboard layout via these steps:
First of all go to "System Settings" as the following Images show (System Language In Greek):
On the opened window then select "Input Devices" (in Greek "Συσκευές Εισόδου") as seen In the following Image:
Afterwards select Keyboard and click on the icons as seen in the following image (with the particular order):
Afterwards select to Change the layout using Alt
+Shift
following the instructions shown in this image:
So now you have restored the input languages back to Greek and English. Similar steps can be followed to restore into any desired layout.
The whole idea behind it is to first setup into basic us
layout via any GNU/Linux live usb/cd, then install any localized layout.
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%2f1135719%2fkeyboard-layout-stuck-into-cz-german-no-english-layout-after-update-restore-int%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
Boot from a live usb and mount the disk that has the GNU/Linux Installed, keep in mind to mount the partition having the INSTALLED system's root filesystem (and not the root folder from the liveusb distro).
In my case has been the /dev/sda2 and I mounted as:
sudo mount /dev/sda2 /mnt
Using the command sudo fdisk -l
and judging from the size and the type (correct one Linux Filesystem
) you can mount the appropriate partition. In case of a wrongly mounted partition you can unmount it via the command (we are using the cd
command as well in order to make not busy the mounted partition):
cd && sudo umount /mnt
Also In the mounted partition should containe the etc
folder as well.
Having said that now you can nou type the following command:
sudo nano /mnt/etc/default/keyboard
And from:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="cz"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
Change it into:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
In case that the change has been into a desktop session that you are already logeedin then edit the /etc/default/keyboard
directly (as long as you are able to locate the correct layout on the CZ_german layout.)
Save the file and then reboot. Once you login configure the keyboard layout via these steps:
First of all go to "System Settings" as the following Images show (System Language In Greek):
On the opened window then select "Input Devices" (in Greek "Συσκευές Εισόδου") as seen In the following Image:
Afterwards select Keyboard and click on the icons as seen in the following image (with the particular order):
Afterwards select to Change the layout using Alt
+Shift
following the instructions shown in this image:
So now you have restored the input languages back to Greek and English. Similar steps can be followed to restore into any desired layout.
The whole idea behind it is to first setup into basic us
layout via any GNU/Linux live usb/cd, then install any localized layout.
add a comment |
Boot from a live usb and mount the disk that has the GNU/Linux Installed, keep in mind to mount the partition having the INSTALLED system's root filesystem (and not the root folder from the liveusb distro).
In my case has been the /dev/sda2 and I mounted as:
sudo mount /dev/sda2 /mnt
Using the command sudo fdisk -l
and judging from the size and the type (correct one Linux Filesystem
) you can mount the appropriate partition. In case of a wrongly mounted partition you can unmount it via the command (we are using the cd
command as well in order to make not busy the mounted partition):
cd && sudo umount /mnt
Also In the mounted partition should containe the etc
folder as well.
Having said that now you can nou type the following command:
sudo nano /mnt/etc/default/keyboard
And from:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="cz"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
Change it into:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
In case that the change has been into a desktop session that you are already logeedin then edit the /etc/default/keyboard
directly (as long as you are able to locate the correct layout on the CZ_german layout.)
Save the file and then reboot. Once you login configure the keyboard layout via these steps:
First of all go to "System Settings" as the following Images show (System Language In Greek):
On the opened window then select "Input Devices" (in Greek "Συσκευές Εισόδου") as seen In the following Image:
Afterwards select Keyboard and click on the icons as seen in the following image (with the particular order):
Afterwards select to Change the layout using Alt
+Shift
following the instructions shown in this image:
So now you have restored the input languages back to Greek and English. Similar steps can be followed to restore into any desired layout.
The whole idea behind it is to first setup into basic us
layout via any GNU/Linux live usb/cd, then install any localized layout.
add a comment |
Boot from a live usb and mount the disk that has the GNU/Linux Installed, keep in mind to mount the partition having the INSTALLED system's root filesystem (and not the root folder from the liveusb distro).
In my case has been the /dev/sda2 and I mounted as:
sudo mount /dev/sda2 /mnt
Using the command sudo fdisk -l
and judging from the size and the type (correct one Linux Filesystem
) you can mount the appropriate partition. In case of a wrongly mounted partition you can unmount it via the command (we are using the cd
command as well in order to make not busy the mounted partition):
cd && sudo umount /mnt
Also In the mounted partition should containe the etc
folder as well.
Having said that now you can nou type the following command:
sudo nano /mnt/etc/default/keyboard
And from:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="cz"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
Change it into:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
In case that the change has been into a desktop session that you are already logeedin then edit the /etc/default/keyboard
directly (as long as you are able to locate the correct layout on the CZ_german layout.)
Save the file and then reboot. Once you login configure the keyboard layout via these steps:
First of all go to "System Settings" as the following Images show (System Language In Greek):
On the opened window then select "Input Devices" (in Greek "Συσκευές Εισόδου") as seen In the following Image:
Afterwards select Keyboard and click on the icons as seen in the following image (with the particular order):
Afterwards select to Change the layout using Alt
+Shift
following the instructions shown in this image:
So now you have restored the input languages back to Greek and English. Similar steps can be followed to restore into any desired layout.
The whole idea behind it is to first setup into basic us
layout via any GNU/Linux live usb/cd, then install any localized layout.
Boot from a live usb and mount the disk that has the GNU/Linux Installed, keep in mind to mount the partition having the INSTALLED system's root filesystem (and not the root folder from the liveusb distro).
In my case has been the /dev/sda2 and I mounted as:
sudo mount /dev/sda2 /mnt
Using the command sudo fdisk -l
and judging from the size and the type (correct one Linux Filesystem
) you can mount the appropriate partition. In case of a wrongly mounted partition you can unmount it via the command (we are using the cd
command as well in order to make not busy the mounted partition):
cd && sudo umount /mnt
Also In the mounted partition should containe the etc
folder as well.
Having said that now you can nou type the following command:
sudo nano /mnt/etc/default/keyboard
And from:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="cz"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
Change it into:
# KEYBOARD CONFIGURATION FILE
# Consult the keyboard(5) manual page.
XKBMODEL="a4techKB21"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
In case that the change has been into a desktop session that you are already logeedin then edit the /etc/default/keyboard
directly (as long as you are able to locate the correct layout on the CZ_german layout.)
Save the file and then reboot. Once you login configure the keyboard layout via these steps:
First of all go to "System Settings" as the following Images show (System Language In Greek):
On the opened window then select "Input Devices" (in Greek "Συσκευές Εισόδου") as seen In the following Image:
Afterwards select Keyboard and click on the icons as seen in the following image (with the particular order):
Afterwards select to Change the layout using Alt
+Shift
following the instructions shown in this image:
So now you have restored the input languages back to Greek and English. Similar steps can be followed to restore into any desired layout.
The whole idea behind it is to first setup into basic us
layout via any GNU/Linux live usb/cd, then install any localized layout.
edited Apr 21 at 17:30
answered Apr 21 at 9:07
Dimitrios DesyllasDimitrios Desyllas
498318
498318
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.
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%2f1135719%2fkeyboard-layout-stuck-into-cz-german-no-english-layout-after-update-restore-int%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