<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pario TechnoBlob &#187; fuse</title>
	<atom:link href="http://pario.no/tag/fuse/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mount remote filesystem using ssh and sshfs</title>
		<link>http://pario.no/2008/04/13/mount-remote-filesystem-using-ssh-and-sshfs/</link>
		<comments>http://pario.no/2008/04/13/mount-remote-filesystem-using-ssh-and-sshfs/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 10:14:35 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[fuse]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[sshfs]]></category>

		<guid isPermaLink="false">http://pario.no/?p=450</guid>
		<description><![CDATA[This is short howto on how you can mount a remote filesystem through ssh and access in Debian it like any other local filesystem. This is a safer method to mount remote filesystems and a user can perform it without root privileges. First you need to install sshfs # aptitude install fuse-utils sshfs Install the [...]]]></description>
			<content:encoded><![CDATA[<p>This is short howto on how you can mount a remote filesystem through ssh and access in Debian it like any other local filesystem. This is a safer method to mount remote filesystems and a user can perform it without root privileges.</p>
<p>First you need to install sshfs</p>
<pre>
# aptitude install fuse-utils sshfs</pre>
<p>Install the necessary kernel module</p>
<pre>
# modprobe fuse</pre>
<p>If you haven&#8217;t installed the ssh server package already, now is the time</p>
<pre>
# aptitude install ssh</pre>
<p>Mounting a remote filesystem is easy</p>
<pre>
sshfs username@hostname: mountpoint</pre>
<p>Example</p>
<p>create the mount point</p>
<pre>
# mkdir /mnt/remotefilesystem
# chown [username]:[groupname] /mnt/remotefilesystem/</pre>
<p>Add yourself to the newly created fuse group</p>
<pre>
adduser [your-user] fuse</pre>
<p>switch to your user and mount the remote filesystem.</p>
<pre>
sshfs remote-user@remote.server:/remote/directory /mnt/remote/</pre>
<p>You can specify any directory after the colon.</p>
<pre>
$ sshfs [user@]host:[dir] mountpoint [options]</pre>
<p>If you want to unmount your directory use the following command</p>
<pre>
fusermount -u mountpoint</pre>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDQvMTMvbW91bnQtcmVtb3RlLWZpbGVzeXN0ZW0tdXNpbmctc3NoLWFuZC1zc2hmcy88d3B0Yj5Nb3VudCByZW1vdGUgZmlsZXN5c3RlbSB1c2luZyBzc2ggYW5kIHNzaGZzPHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/04/13/mount-remote-filesystem-using-ssh-and-sshfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

