How setup latam (spanish) keyboard

Hi All,

I've been using freebsd in a couple of machines, but in all cases I can not setup the keyboard to latam layout, also I can not use leters like: ñ, á, é, í, ó, ú .

The main idea is try to setup in XOrg. I've tried different things and layouts but I can not get it's working...

Any ideas or suggestions?
 
I do it this way (for no - Norwegian keyboard layout):
Code:
root@kg-core1# cat /usr/local/etc/X11/xorg.conf.d/keyboard-no.conf
Section "InputClass"
        Identifier "keyboard defaults"
        MatchIsKeyboard "on"
        Option      "XkbLayout" "no"
EndSection
So I guess changing "no" to "latam" would work (but I have not tried it). Does the normal Spanish layout ("es") work?
BTW, the name of the config file is not important, as long as it ends in '.conf'
HTH
 
I'm a newbie too, and a spanish speaker; this is what I got in my .xinitrc :

Code:
#!/bin/sh
setxkbmap -model pc105 -layout es, ISO-8859-15-acc
exec (whatever_ window manager or desktop environment you_are_using)

IOW, go here, put the above:
Code:
# nano /home/your_username/.xinitrc

save/exit/reboot

the model: is your non-U.S. english keyboard, es: the layout spanish keyboard, your ISO type 15 gives you the Euro sign, and the acc are the accents and tildes.

Suerte,

àòù €€€ ñññññ áóú ¿¿¿¿¿???
 
I do it this way (for no - Norwegian keyboard layout):
So I guess changing "no" to "latam" would work (but I have not tried it). Does the normal Spanish layout ("es") work?
BTW, the name of the config file is not important, as long as it ends in '.conf'
HTH

Thanks, I test it and it works my configuration is:
Code:
Section "InputClass"
       Identifier "keyboard defaults"
        MatchIsKeyboard "on"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "latam"
        Option      "XkbVariant" ",winkeys"
EndSection
 
Thanks, I test it and it works my configuration is:
Code:
Section "InputClass"
       Identifier "keyboard defaults"
        MatchIsKeyboard "on"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "latam"
        Option      "XkbVariant" ",winkeys"
EndSection
Thanks btomza and tingo it works!!!! Here my code in the following file /usr/local/etc/X11/xorg.conf.d/keyboard-latam.conf
Code:
Section "InputClass"
        Identifier "keyboard defaults"
        MatchIsKeyboard "on"
        Option "XkbLayout" "latam"
        Option "XkbVariant" ",winkeys"
EndSection

My laptop is a DELL Latitude E6440
 
Back
Top