Hello,
I'm trying to setup a FreeBSD desktop as guest in VirtualBox.
I have no /etc/X11/xorg.conf, instead I've put the customized configuration in /usr/local/etc/X11/xorg.conf.d/.
There, I've added two files:
Problem is, when I
I guess this has to do with this new udev setting of X.Org. Only, suggested solutions from the forum tell about recompiling X.org, but I installed everything from
Does it make the use of X.Org configuration files (temporarily, or definitely) unavailable? Is there any workaround or solution for package users available?
(Only workarounds I could find so far: simply remove keyboard.conf and set the keyboard from XFCE settings, this works. I guess using
I'm trying to setup a FreeBSD desktop as guest in VirtualBox.
I have no /etc/X11/xorg.conf, instead I've put the customized configuration in /usr/local/etc/X11/xorg.conf.d/.
There, I've added two files:
- mouse0.conf that contains the exact same content as described in the handbook (no problem).
- keyboard.conf that contains (inspired by the handbook too):
Code:
Section "InputClass"
Identifier "KeyboardDefaults"
Driver "keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "fr"
EndSection
Problem is, when I
startx
into XFCE, pressing any key outputs a random series of letters and symbols mixed (twice the same key results in different series of symbols). So, it looks like a disaster.I guess this has to do with this new udev setting of X.Org. Only, suggested solutions from the forum tell about recompiling X.org, but I installed everything from
pkg install
, so I won't recompile X.Org using this new option (also I don't want to mix ports and packages).Does it make the use of X.Org configuration files (temporarily, or definitely) unavailable? Is there any workaround or solution for package users available?
(Only workarounds I could find so far: simply remove keyboard.conf and set the keyboard from XFCE settings, this works. I guess using
setxkbmap
in .xinitrc would work too.)