Howto run applications remotely with X11
From How2s
(Redirected from How2 run applications remotely with X11)
Machine 1 (Application Server):
bash:export DISPLAY=hostname:displaynumber.screennumber tcsh:setenv DISPLAY hostname:displaynumber.screennumber
for example:
export DISPLAY=10.0.0.5:0.0
Machine 2 (Client):
xhost +IP_from_Machine_1
for example:
xhost +10.0.0.1
Starting the application:
If above things are set up, in the same shell, you typed "export DISPLAY..." start your application. For example:
mozilla &
x-window-managerto have a fully remote desktop-session
Get more detailled information on:
http://www.linuxfocus.org/English/January2002/article222.shtml

