• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

remote x

 
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do I need to run a remote X server (Exceed or similar) on my linux workstation (remote thru a windoze PC). Do I need to edit some config file to allow this, doesn't seem to work by default.
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
X terminology can be a bit weird, so can I clear up whether you want an X "server" (ie the display screen, the one you sit at) or an X "client" (ie, the one which atually runs the application code) you want to run on your workstation ?
It sounds as if you actually want to run the display "server" on the Windows box (using Exceed etc.), and the applications on Linux - am I right ?
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
See
http://www.uk.research.att.com/vnc/
 
Ranch Hand
Posts: 101
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
it's simple actually
First you have to tell the X server (the one with the screen attached ) that certain X clients are allowed to access it
xhost + //disables accesss control (allows everybody to connect to your X server)
for more finegrained control take a look at http://www.csa.ru/~il/cgi-bin/man.cgi?topic=xhost
Next go to another computer and start an X client (which is actually just an X application) like this
xclock -display IP_NUMBER_OF_XSERVER:0

that will display the 'xclock' application on the server's screen

Dave
 
sonny kher
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well Exceed/X-win would be an X server that talks to the XDM server
I think I have to alter the /etc/X11/../Xaccess
file to say that machines on the network can connect (by default its disabled) i am not sure what that particular directive is in this case
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic