r3 - 07 Apr 2006 - 16:16:55 - JimMcQuillanYou are here: TWiki >  Ltsp Web  > RDP

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
Edit | Attach | Printable | Raw View | Backlinks: Web, All Webs | History: r3 < r2 < r1 | More topic actions
 
Powered by TWiki
This site is powered by the TWiki collaboration platformCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback