Has anyone been able to forward X applications from their Z to their workstation? I've tried:
CODE
ssh -CX <ip-of-zaurus>
No go. Whenever I echo $DISPLAY it comes up empty.
Normally when you SSH to a machine with -X, xauth is run and you are giving a DISPLAY=localhost:n
If you as the -v switch you will see an error about not finding xauth.
I noticed that X/QT does not seem to install xauth so I've tried skirting it altogether by setting "xhost +" on the client while manually setting DISPLAY to the correct IP. No luck. My preferred method of forward would be to use SSH.
You need to install xbase-clients from the X/qt website if you want xauth.
I've verified that I can forward X sessions from other systems to the workstation in question. I successfully ran OpenOffice.org from an OS X box back to the Linux workstation. (Using SSH x forwarding.)
Yep. I do that all the time too.
So -- has anyone tried and succeeded in forwarding X from a Z to another box? Have I overlooked anything?
I am using Cacko 1.21b with X/qt. After I did the following I get a DISPLAY after ssh -X
Append to the end of /etc/ssh/sshd_config:
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes
XAuthLocation /home/QtPalmtop/bin/xauth
And restart sshd if running as a daemon. I use inetd, so no need to restart.