Hi,
how to change keyboard to German layout?
Found to other topics how to change it, but both unanswered…
Hi,
how to change keyboard to German layout?
Found to other topics how to change it, but both unanswered…
Hello,
I’m interested too. currently rancher os boot in qwerty mode. But I would like to switch to azerty…
There is loadkmap command but I don’t found i18n fr_fr mapping.
maybe this is just not possible.
EDIT : when I do ssh to the box I’m in azerty.
Same here, I’d like to have azerty (fr-fr)
Hello,
Same here, I’d like to have azerty (fr-fr), it’s possible via cmd ?
Thanks
Hi,
even if this is kind of a late follow-up, I post the procedure I have used to install a non-us key map (in my case ch) in case someone drops onto this thread in search of a solution. The steps involved are:
export a binary version of the current key map of another system (in my case an ubuntu server):
$ sudo apt-get install busybox
$ sudo busybox dumpkmap > ch.bmap
transfer the resulting file somehow to the destination system (e.g. by putting it onto a web server and getting it with wget)
load the keymap on the target system
$ loadkmap < ch.bmap
the steps 2 and 3 can also be put into a cloud-config.yaml, e.g. as follows:
runcmd:
- "mkdir -p /usr/share/keymaps/i386"
- "wget http://10.20.30.40:8080/ch.bmap -O /usr/share/keymaps/i386/ch.bmap"
- "loadkmap < /usr/share/keymaps/i386/ch.bmap"