* slightly off topic: remotely displaying Mac OS X applications
@ 2003-01-12 19:26 Jonathan Kallay
0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Kallay @ 2003-01-12 19:26 UTC (permalink / raw)
To: linux-newbie
My downstairs neighbor has a computer running Mac OS X, which as we all know
has a UNIX backend. For kicks, I started an X server, telnetted into his
machine, changed the DISPLAY variable to my display, and tried launching a
GUI application. The application did in fact launch, but on his screen, not
in my X server. Any ideas as to why this happened?
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: slightly off topic: remotely displaying Mac OS X applications
@ 2003-01-12 21:31 whitnl73
0 siblings, 0 replies; 5+ messages in thread
From: whitnl73 @ 2003-01-12 21:31 UTC (permalink / raw)
To: linux-newbie; +Cc: yoni
On Sun, 12 Jan 2003, Jonathan Kallay wrote:
> My downstairs neighbor has a computer running Mac OS X, which as we all know
> has a UNIX backend. For kicks, I started an X server, telnetted into his
> machine, changed the DISPLAY variable to my display, and tried launching a
> GUI application. The application did in fact launch, but on his screen, not
> in my X server. Any ideas as to why this happened?
>
How did you change the DISPLAY variable? Did you forget to export it?
Probably your X server will not allow apps on another machine to use
your display (that is generally how X servers are set up).
It is much easier to run remote X applications using ssh, which will
handle them automagically, but if you can't use ssh, there is a
Remote-X-Apps-mini-HOWTO that covers the details of X security.
If you have the howtos installed, it is probably on your machine, or you
can look here:
Remote X Apps mini-HOWTO: Introduction (p2 of 2)
The most recent version of this document is always available on WWW at
http://www.xs4all.nl/~zweije/xauth.html. It is also available as the
Linux Remote X Apps mini-HOWTO at
http://sunsite.unc.edu/LDP/HOWTO/mini/Remote-X-Apps. Linux
(mini-)HOWTOs are available by http or ftp from sunsite.unc.edu.
what was sunsite.unc.edu is now calling itself
www.ibiblio.org (and ftp.ibiblio.org, BTW
Lawson
--
---oops---
________________________________________________________________
Sign Up for Juno Platinum Internet Access Today
Only $9.95 per month!
Visit www.juno.com
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: slightly off topic: remotely displaying Mac OS X applications
@ 2003-01-13 0:00 Heimo Claasen
0 siblings, 0 replies; 5+ messages in thread
From: Heimo Claasen @ 2003-01-13 0:00 UTC (permalink / raw)
To: linux-newbie
How _do_ you "change the DISPLAY variable?"
Searching through my wise Debian book I cannot even find it mentioned
at all.
// Heimo Claasen // <hammer at revobild dot net> // Brussels 2003-01-13
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: slightly off topic: remotely displaying Mac OS X applications
@ 2003-01-13 3:20 whitnl73
0 siblings, 0 replies; 5+ messages in thread
From: whitnl73 @ 2003-01-13 3:20 UTC (permalink / raw)
To: linux-newbie; +Cc: hammer
On 13 Jan 2003, Heimo Claasen wrote:
> How _do_ you "change the DISPLAY variable?"
>
> Searching through my wise Debian book I cannot even find it mentioned
> at all.
>
> // Heimo Claasen // <hammer at revobild dot net> // Brussels 2003-01-13
>
Depends on your shell.
bash:
export DISPLAY=machine.you.want_to_display.on:0.0
tcsh:
setenv DISPLAY machine.you.want_to_display.on:0.0
If you use some other shell, see the man page for it, or at least tell
us what it is.
Lawson
--
---oops---
________________________________________________________________
Sign Up for Juno Platinum Internet Access Today
Only $9.95 per month!
Visit www.juno.com
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: slightly off topic: remotely displaying Mac OS X applications
@ 2003-01-13 3:25 Jonathan Kallay
0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Kallay @ 2003-01-13 3:25 UTC (permalink / raw)
To: linux-newbie
I changed the display variable with the command "setenv DISPLAY
xxx.xxx.xxx.xxx:0.0" (OS X's tcsh doesn't use set/export commands). I
added
the host to the list of allowed hosts by running xhost. I've successfully
launched remote applications on another computer that have appeared on my
screen, so the steps should be the right ones...
> ----- Original Message -----
> From: <whitnl73@juno.com>
> To: <linux-newbie@vger.kernel.org>
> Cc: <yoni@kallay.net>
> Sent: Sunday, January 12, 2003 4:31 PM
> Subject: Re: slightly off topic: remotely displaying Mac OS X applications
>
>
> >
> > On Sun, 12 Jan 2003, Jonathan Kallay wrote:
> >
> > > My downstairs neighbor has a computer running Mac OS X, which as we
all
> know
> > > has a UNIX backend. For kicks, I started an X server, telnetted into
> his
> > > machine, changed the DISPLAY variable to my display, and tried
launching
> a
> > > GUI application. The application did in fact launch, but on his
screen,
> not
> > > in my X server. Any ideas as to why this happened?
> > >
> > How did you change the DISPLAY variable? Did you forget to export it?
> > Probably your X server will not allow apps on another machine to use
> > your display (that is generally how X servers are set up).
> >
> > It is much easier to run remote X applications using ssh, which will
> > handle them automagically, but if you can't use ssh, there is a
> > Remote-X-Apps-mini-HOWTO that covers the details of X security.
> >
> > If you have the howtos installed, it is probably on your machine, or you
> > can look here:
> >
> >
> > Remote X Apps mini-HOWTO: Introduction (p2 of 2)
> >
> > The most recent version of this document is always available on WWW
at
> > http://www.xs4all.nl/~zweije/xauth.html. It is also available as the
> > Linux Remote X Apps mini-HOWTO at
> > http://sunsite.unc.edu/LDP/HOWTO/mini/Remote-X-Apps. Linux
> > (mini-)HOWTOs are available by http or ftp from sunsite.unc.edu.
> >
> > what was sunsite.unc.edu is now calling itself
> > www.ibiblio.org (and ftp.ibiblio.org, BTW
> >
> >
> > Lawson
> > --
> > ---oops---
> >
> >
> >
> >
> > ________________________________________________________________
> > Sign Up for Juno Platinum Internet Access Today
> > Only $9.95 per month!
> > Visit www.juno.com
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-newbie"
in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at http://www.linux-learn.org/faqs
> >
>
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-01-13 3:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-13 3:25 slightly off topic: remotely displaying Mac OS X applications Jonathan Kallay
-- strict thread matches above, loose matches on Subject: below --
2003-01-13 3:20 whitnl73
2003-01-13 0:00 Heimo Claasen
2003-01-12 21:31 whitnl73
2003-01-12 19:26 Jonathan Kallay
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox