<?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"
	>
<channel>
	<title>Comments on: Extending Quicksilver to Remote Servers</title>
	<atom:link href="http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/</link>
	<description>Assistant Professor—Information Systems—Brigham Young University</description>
	<pubDate>Fri, 18 May 2012 15:46:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: admin</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-219</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 22 Jul 2010 07:23:56 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-219</guid>
		<description>I've never tried that. I'm sure it's possible with Applescript.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never tried that. I&#8217;m sure it&#8217;s possible with Applescript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thorsten</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-216</link>
		<dc:creator>Thorsten</dc:creator>
		<pubDate>Wed, 14 Jul 2010 10:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-216</guid>
		<description>Mouting from quicksilver would also be very interesting for me! Any idea?</description>
		<content:encoded><![CDATA[<p>Mouting from quicksilver would also be very interesting for me! Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Isak Johnsson</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-132</link>
		<dc:creator>Isak Johnsson</dc:creator>
		<pubDate>Tue, 22 May 2007 08:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-132</guid>
		<description>One of those smart solutions where Mac truly shine. Not that it's impossible anywhere else, but the Mac mindset helps.

Have you found how to do the mounting from Quicksilver yet?

Thanks for the post!</description>
		<content:encoded><![CDATA[<p>One of those smart solutions where Mac truly shine. Not that it&#8217;s impossible anywhere else, but the Mac mindset helps.</p>
<p>Have you found how to do the mounting from Quicksilver yet?</p>
<p>Thanks for the post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo Vancelli</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-131</link>
		<dc:creator>Carlo Vancelli</dc:creator>
		<pubDate>Sat, 19 May 2007 10:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-131</guid>
		<description>Those are some very interesting points. But by the name "Quick Silver," are you referring to a very fast version of the famed horse of the Lone Ranger, or the metallic equivalent of the Greek god, Mercury?</description>
		<content:encoded><![CDATA[<p>Those are some very interesting points. But by the name &#8220;Quick Silver,&#8221; are you referring to a very fast version of the famed horse of the Lone Ranger, or the metallic equivalent of the Greek god, Mercury?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-130</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 03 May 2007 14:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-130</guid>
		<description>Dennis,

Thanks for your comment. MacFUSE and SSHFS are fairly easy to install. However, you need to make sure your FTP server accepts connections from SSH clients. The most important difference between FTP and SSH/SFTP is that FTP sends login information (username and password) in the clear so that anyone can intercept and obtain your login credentials. SSH and SFTP (the SSH version of FTP) encrypt all traffic to protect login and all transfered information.

In short, SSHFS is only designed to work with SSH, so you'll need to make sure your FTP server supports that.

Once you know you can login to your sever via SSH, install the MacFUSE package at:

http://code.google.com/p/macfuse/downloads/list

This install is straightforward, but doesn't produce any discernible results. Essentially, MacFUSE installs the system-level underpinnings that make SSHFS possible. You'll have to restart after installation.

Next download SSHFS, also at:

http://code.google.com/p/macfuse/downloads/list

The SSHFS DMG only contains SSHFS.app, which is a GUI interface to setup an SSH file system. If you want to mount the SSHFS automatically through a script, you can follow the instructions at:

http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS

Once you've mounted your server as network disk using SSHFS, you can add the network volume to Quicksilver by setting a catalog entry for the mount.

N.B. I would advise not cataloging the contents of your network volume because Quicksilver seemed to perform very slowly when I did this. Setting "Include contents" to "None" seemed to prevent this.

Hope this helps! Let me know if you have any more questions.

Best,

Tony</description>
		<content:encoded><![CDATA[<p>Dennis,</p>
<p>Thanks for your comment. MacFUSE and SSHFS are fairly easy to install. However, you need to make sure your FTP server accepts connections from SSH clients. The most important difference between FTP and SSH/SFTP is that FTP sends login information (username and password) in the clear so that anyone can intercept and obtain your login credentials. SSH and SFTP (the SSH version of FTP) encrypt all traffic to protect login and all transfered information.</p>
<p>In short, SSHFS is only designed to work with SSH, so you&#8217;ll need to make sure your FTP server supports that.</p>
<p>Once you know you can login to your sever via SSH, install the MacFUSE package at:</p>
<p><a href="http://code.google.com/p/macfuse/downloads/list" rel="nofollow">http://code.google.com/p/macfuse/downloads/list</a></p>
<p>This install is straightforward, but doesn&#8217;t produce any discernible results. Essentially, MacFUSE installs the system-level underpinnings that make SSHFS possible. You&#8217;ll have to restart after installation.</p>
<p>Next download SSHFS, also at:</p>
<p><a href="http://code.google.com/p/macfuse/downloads/list" rel="nofollow">http://code.google.com/p/macfuse/downloads/list</a></p>
<p>The SSHFS DMG only contains SSHFS.app, which is a GUI interface to setup an SSH file system. If you want to mount the SSHFS automatically through a script, you can follow the instructions at:</p>
<p><a href="http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS" rel="nofollow">http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS</a></p>
<p>Once you&#8217;ve mounted your server as network disk using SSHFS, you can add the network volume to Quicksilver by setting a catalog entry for the mount.</p>
<p>N.B. I would advise not cataloging the contents of your network volume because Quicksilver seemed to perform very slowly when I did this. Setting &#8220;Include contents&#8221; to &#8220;None&#8221; seemed to prevent this.</p>
<p>Hope this helps! Let me know if you have any more questions.</p>
<p>Best,</p>
<p>Tony</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Kirschner</title>
		<link>http://anthonyvance.com/blog/hci/extending-quicksilver-to-remote-computers/#comment-129</link>
		<dc:creator>Dennis Kirschner</dc:creator>
		<pubDate>Sun, 29 Apr 2007 13:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://anthonyvance.com/2007/04/24/extending-quicksilver-to-remote-computers/#comment-129</guid>
		<description>Could you give some hints on how to set this up, please?  I am also a big QS fan but I don't have any experience with MacFUSE and SSHFS so far... I would like to use this as a quick way of accessing my FTP webserver.

Thanks!
Dennis</description>
		<content:encoded><![CDATA[<p>Could you give some hints on how to set this up, please?  I am also a big QS fan but I don&#8217;t have any experience with MacFUSE and SSHFS so far&#8230; I would like to use this as a quick way of accessing my FTP webserver.</p>
<p>Thanks!<br />
Dennis</p>
]]></content:encoded>
	</item>
</channel>
</rss>

