[Bug 195982] Re: Shift key (and caps lock) stop working when using VMWare
KristerL
draengen at hotmail.com
Fri Sep 5 13:00:17 UTC 2008
If the setxkbmap workaround works, you can use a script like the one below for convenience, run it
in the background while running vmware.
It works for me, and although the script resets the keymap even when the VM is active,
I have not noticed any side-effects in the virtual machines.
######################################################################
# Set environment
waitsecs=5
# Run the loop
while true; do
# Check that the modifier keys exists
xmodmap -pm | grep 'Alt_L' > /dev/null
if [ $? -ne 0 ]; then
# Fix X keyboard map if not found
echo "`date +'%Y-%m-%d %H:%M:%S'` : X keyboard map fixed."
setxkbmap
fi
# Wait before running again
sleep $waitsecs
done
######################################################################
/Krister Lundmark
--
Shift key (and caps lock) stop working when using VMWare
https://bugs.launchpad.net/bugs/195982
You received this bug notification because you are a member of Kernel
Bugs, which is subscribed to Linux.
More information about the kernel-bugs
mailing list