On Tue, Oct 13, 2009 at 1:05 PM, Pedro G. Rodrigues <[email protected]> wrote:
> Can some kind soul explain this procedure a little better? Exactly which > files to change, and perhaps their full contents after altered? r...@ltsp-server:~# cat /opt/ltsp/i386/usr/share/ltsp/screen.d/rdesktop #!/bin/sh # # The following script works for LTSP5 and was tested in Ubuntu "Feisty" Linux. # Original rdesktop script by James A. McQuillan, # modified for LTSP5 by Colin Osterhout of SERRC (www.serrc.org). # # This software is licensed under the Gnu General Public License. # The full text of which can be found at http://www.LTSP.org/license.txt # # Call this through /opt/ltsp/i386/etc/lts.conf like this: # RDP_OPTIONS = "-a 16" # RDP_SERVER = w2k3.terminal.server.ip # SCREEN_02 = rdesktop # PATH=/bin:$PATH; export PATH . /usr/share/ltsp/screen-x-common RDP_OPTIONS=${RDP_OPTIONS:-"-f"} RDESKTOP_OPTIONS="${RDP_OPTIONS} -f $* ${RDP_SERVER}" if [ -x /usr/share/ltsp/xinitrc ]; then xinitrc=/usr/share/ltsp/xinitrc fi xinit $xinitrc /usr/bin/rdesktop.wrapper ${RDESKTOP_OPTIONS} -- ${DISPLAY} vt${TTY} ${X_ARGS} -br >/dev/null r...@ltsp-server:~# cat /opt/ltsp/i386/usr/bin/rdesktop.wrapper #!/bin/sh program="${0%%\.wrapper}" while true; do $program "$@" done Works for me. Rebuild your image after making those changes. db ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
