RDP Protocol
LTSP Provides support for connecting to RDP servers using the Rdesktop program.
Minus key on the numeric pad turns on EXT mode in Excel
A fix for this is to override the minus key on the numeric pad to map to the minus key on the main keyboard.
In
/opt/ltsp/i386/usr/bin/rdesktop.wrapper, add the following line, before the
while loop.
/usr/X11R6/bin/xmodmap -e "keysym KP_Subtract = minus"
rdesktop.wrapper Before the change:
!#/bin/sh
while true; do
/usr/bin/rdesktop "$@"
done
After the change, it should look like the following:
#!/bin/sh
/usr/X11R6/bin/xmodmap -e "keysym KP_Subtract = minus"
while true; do
/usr/bin/rdesktop "$@"
done