Differences between version 17 and previous revision of XFree86Notes.
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 17 | Last edited on Saturday, April 29, 2006 1:58:56 pm | by PerryLorier | Revert |
Older page: | version 16 | Last edited on Tuesday, March 29, 2005 2:59:39 pm | by FelineGrace | Revert |
@@ -109,6 +109,33 @@
loading [IPv6] support on the remote machine fixes this.
See [XFree86KeyboardMouseNotes] for information on Keyboards and Mice under [XFree86]
+
+!! Using X11 Remotely
+See the Security section above.
+
+! Using SSH
+You can use X11 apps remotely with:
+<pre>
+ ssh -Y ''machinename'' xterm
+<pre>
+will login to ''machinename'' and run the program "xterm" which will display locally. For this to work you need the <tt>xauth</tt> program installed on the server. SSH will encrypt the X11 session and setup <tt>$DISPLAY</tt> properly.
+
+! Using $DISPLAY
+You can run a program as:
+<pre>
+ export DISPLAY=''displaymachinename'':0
+ xterm
+</pre>
+
+This will make "xterm" run on the local machine but to display it's output on ''displaymachine'' (display 0). You may need to run:
+<pre>
+ xhost +''appmachine''
+</pre>
+to allow appmachine permission to use your display.
+
+! Using XDMCP
+You can configure gdm(8) to announce itself onto the local network, and when you run X run it with "-query" to make it query the local network. ''(This section needs to be filled out)''
+
----
[CategoryXFree86Notes]