>I've been trying to run an xwindows session on one vt and a an
>rdesktop on another with no joy. I've tried making changes to the
>rdesktop screen script but haven't gotten anything to work.  Looking
>through the archives I see other folks have asked this but I can't
>find a working example that I understand.  If someone has this working
>could they please post exactly what they did?

>Thanks,

>Jeff

Jeff, 
    Sorry for the double post.  Here I will finish my thought :) .  I am doing 
something very similar - launching an xwindows and a ica desktop.  Does your startx 
file include this section near the end?:

*********************************************
    /usr/X11R6/bin/${XBINARY} ${ACC_CTRL}              \
                              ${XF_ARGS}               \
                              -xf86config ${XFCFG}     \
                              :$(($TTY-1))             \
                              vt${TTY}
*********************************************

I copied the startx file into start ica.  then I removed this and everything below:

*********************************************
ACCESS_CONTROL=${DISABLE_ACCESS_CONTROL:-"N"}
reg_info ACCESS_CONTROL
if [ "${ACCESS_CONTROL}" = "Y" ]; then
    ACC_CTRL="-ac"
else
    ACC_CTRL=""
fi
... to end of file
*********************************************
and replaced it with:


********************************************
#Create the xinitrc file.

   echo " export DISPLAY=`hostname`:$(($TTY-1))" > /tmp/xinitrc
   echo " export HOME=/root" >>/tmp/xinitrc
   echo " /usr/X11R6/bin/xterm -geometry 135x55 -fn                     \
          -adobe-courier-bold-r-normal--18-0-0-0-m-0-iso8859-1          \
          -bg rgb:3A/6E/A5 -fg white -e /etc/choice $ICA_APP" >>/tmp/xinitrc
#Done creating the xinitrc file

if [ -w /proc/progress ]; then
    /usr/X11R6/bin/xinit -- /usr/X11R6/bin/${XBINARY} -xf86config ${XFCFG}  \
                              -ac  vt${TTY} :$(($TTY-1))>/dev/null 2>&1
    if [ $? -ne 0 ]; then
      echo -n -e "\n\rxserver failed, press <enter> to continue "
      read CMD
    fi
else
    /usr/X11R6/bin/xinit -- /usr/X11R6/bin/${XBINARY} -xf86config ${XFCFG}  \
                              -ac  vt${TTY} :$(($TTY-1))
    if [ $? -ne 0 ]; then
      echo -n -e "\n\rxserver failed, press <enter> to continue "
      read CMD
    fi
fi
********************************************


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
_____________________________________________________________________
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

Reply via email to