<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Screen Sharing replaces Apple Remote Desktop</title>
	<atom:link href="http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/</link>
	<description>Chris Pepper on whatever (the non-Julia blog)</description>
	<pubDate>Tue, 06 Jan 2009 15:39:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ppayne</title>
		<link>http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/comment-page-1/#comment-280</link>
		<dc:creator>ppayne</dc:creator>
		<pubDate>Tue, 26 Feb 2008 01:39:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/#comment-280</guid>
		<description>&lt;p&gt;Is there any way you very smart people could help me get VNsea on my unlocked iPhone connecting to Leopard's screen sharing? It seems so easy that no one has made a specific walkthrough but I cannot get it to work. I have screen sharing turned on on my main Mac, with "VNC can connect with password" clicked on and password entered. I try to connect from the iPhone to the IP and port 5900 (is this the default? this is totally confusing to me, I can only see USB and firewire ports on my computer -- just kidding about that last part). Anyway, no matter what happens, it cannot connect through port 5901 or anything else I've tried port-wise. Can anyone help?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is there any way you very smart people could help me get VNsea on my unlocked iPhone connecting to Leopard&#8217;s screen sharing? It seems so easy that no one has made a specific walkthrough but I cannot get it to work. I have screen sharing turned on on my main Mac, with &#8220;VNC can connect with password&#8221; clicked on and password entered. I try to connect from the iPhone to the IP and port 5900 (is this the default? this is totally confusing to me, I can only see USB and firewire ports on my computer &#8212; just kidding about that last part). Anyway, no matter what happens, it cannot connect through port 5901 or anything else I&#8217;ve tried port-wise. Can anyone help?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: adamc00</title>
		<link>http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/comment-page-1/#comment-268</link>
		<dc:creator>adamc00</dc:creator>
		<pubDate>Mon, 04 Feb 2008 04:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/#comment-268</guid>
		<description>&lt;p&gt;I dunno who Geoff is, an invention from my distracted brain I suspect. Sorry about that, I was actually trying to say "Thanks Chris".&lt;/p&gt;

&lt;p&gt;The alias method looks good and having an open shell around can be handy. Open tunnels aren't an issue however since the connection will be dropped once there are no active channels, this will happen when the VNC session is closed, which is enough of a reminder for me.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I dunno who Geoff is, an invention from my distracted brain I suspect. Sorry about that, I was actually trying to say &#8220;Thanks Chris&#8221;.</p>

<p>The alias method looks good and having an open shell around can be handy. Open tunnels aren&#8217;t an issue however since the connection will be dropped once there are no active channels, this will happen when the VNC session is closed, which is enough of a reminder for me.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: adamc00</title>
		<link>http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/comment-page-1/#comment-267</link>
		<dc:creator>adamc00</dc:creator>
		<pubDate>Mon, 04 Feb 2008 02:51:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/#comment-267</guid>
		<description>&lt;p&gt;This post inspired me (thanks Geoff) but I didn't like the auto cut then manual paste bit so I found a less fiddly way. I use a function instead of an alias to get variable substitution under bash (alias can't do this). The line below defines a bash function.&lt;/p&gt;

&lt;p&gt;stss () { ssh -f -C -L 5901:localhost:5900 $1 'sleep 5'; open vnc://localhost:5901/ ; }&lt;/p&gt;

&lt;p&gt;The -f on ssh forks the ssh and puts it in the background. The 'sleep 5' gives ssh something to do on the remote host until the VNC session is established otherwise it will just exit immediately tearing down the tunnel and therefore the screen sharing session will fail.&lt;/p&gt;

&lt;p&gt;Instead of directly invoking "Screen Sharing.app" directly, "open" invokes it for us since that is what OS X 10.5 (don't know about earlier versions) has registered as a handler for the vnc protocol.&lt;/p&gt;

&lt;p&gt;Once the function is defined, it is invoked the same way as the original, eg ...&lt;/p&gt;

&lt;p&gt;stss www&lt;/p&gt;

&lt;p&gt;... but avoids the hostname dialog box from Screen Sharing.app and jumps directly to the connecting stage.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This post inspired me (thanks Geoff) but I didn&#8217;t like the auto cut then manual paste bit so I found a less fiddly way. I use a function instead of an alias to get variable substitution under bash (alias can&#8217;t do this). The line below defines a bash function.</p>

<p>stss () { ssh -f -C -L 5901:localhost:5900 $1 &#8217;sleep 5&#8242;; open vnc://localhost:5901/ ; }</p>

<p>The -f on ssh forks the ssh and puts it in the background. The &#8217;sleep 5&#8242; gives ssh something to do on the remote host until the VNC session is established otherwise it will just exit immediately tearing down the tunnel and therefore the screen sharing session will fail.</p>

<p>Instead of directly invoking &#8220;Screen Sharing.app&#8221; directly, &#8220;open&#8221; invokes it for us since that is what OS X 10.5 (don&#8217;t know about earlier versions) has registered as a handler for the vnc protocol.</p>

<p>Once the function is defined, it is invoked the same way as the original, eg &#8230;</p>

<p>stss www</p>

<p>&#8230; but avoids the hostname dialog box from Screen Sharing.app and jumps directly to the connecting stage.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Toucouleur</title>
		<link>http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/comment-page-1/#comment-249</link>
		<dc:creator>Toucouleur</dc:creator>
		<pubDate>Fri, 16 Nov 2007 08:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.extrapepperoni.com/2007/11/03/screen-sharing-replaces-apple-remote-desktop/#comment-249</guid>
		<description>&lt;p&gt;thanks a lot for this tip ! I think I will replace my Synergy's sharing system for this sharing screen connection.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>thanks a lot for this tip ! I think I will replace my Synergy&#8217;s sharing system for this sharing screen connection.</p>]]></content:encoded>
	</item>
</channel>
</rss>
