On 15Feb2007 08:22, I wrote: | I have a script called "x@" that starts my X server with a .xsession | which "ssh -Y"s to a remote host and runs the session there, eg a | gnome-session. The display will be at my end, the apps and all at the | far end. Works just fine. | | "x@" is here: | http://www.cskk.ezoshosting.com/cs/css/bin/x@ | | It just sets $REMOTE_XSESSION_HOST to the desired host and starts xinit, | which runs my .xsession. That says: | | if [ -n "$REMOTE_XSESSION_HOST" ] | then | remote_xsession "$REMOTE_XSESSION_HOST" &
It's worth noting here that you will not want that trailing "&" in your script. My session runs the window manager locally at the bottom regardless, so I kick off the remote clients asynchronously as shown. In your scenario, gnome-session will include a window manager, so you must wait for it. Lose the "&" ! Cheers, -- Cameron Simpson <[EMAIL PROTECTED]> DoD#743 http://www.cskk.ezoshosting.com/cs/ Experience is what you have got after you needed it. To unsubscribe from this list, please email [EMAIL PROTECTED] & you will be removed. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/LINUX_Newbies/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/LINUX_Newbies/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
