<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title> &#187; Share</title>
	<atom:link href="http://lofubuntuxp.wordpress.com/category/ubuntu/share/feed/" rel="self" type="application/rss+xml" />
	<link>http://lofubuntuxp.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 21 Jan 2009 21:13:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='lofubuntuxp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ed341d9256fdebdeef10d32ce301e950?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title> &#187; Share</title>
		<link>http://lofubuntuxp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lofubuntuxp.wordpress.com/osd.xml" title="" />
		<item>
		<title>NFS file sharing</title>
		<link>http://lofubuntuxp.wordpress.com/2008/05/01/nfs-file-sharing/</link>
		<comments>http://lofubuntuxp.wordpress.com/2008/05/01/nfs-file-sharing/#comments</comments>
		<pubDate>Thu, 01 May 2008 16:59:00 +0000</pubDate>
		<dc:creator>paapereira</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://lofubuntuxp.wordpress.com/2008/05/01/nfs-file-sharing/</guid>
		<description><![CDATA[Here&#8217;s how you share files between two Linux machines, using NFS.

Installation

Go to the Synaptic Package Manager
Find nfs-kernel-server and install


Configuration in machine 1 (where the shared folder is)

Define the shares you want to provide

sudo vi /etc/exports

Add your shares to the file

/home/mach1user/Public *(ro,sync)
/home/mach1user/Documents 100.000.00.01(ro,sync,no_subtree_check)
/home/mach1user/Share 100.000.00.01/20(rw,sync,no_subtree_check)

Make your changes be known

sudo exportfs -a

Configuration in machine 2 (where the shared [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lofubuntuxp.wordpress.com&blog=3945211&post=24&subd=lofubuntuxp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s how you share files between two Linux machines, using NFS.</p>
<p><strong><br />
Installation</strong></p>
<ul>
<li>Go to the Synaptic Package Manager</li>
<li>Find <span style="font-style:italic;">nfs-kernel-server</span> and install</li>
</ul>
<p><strong><br />
Configuration in machine 1</strong> (<span style="font-size:85%;">where the shared folder is</span>)</p>
<ul>
<li>Define the shares you want to provide</li>
</ul>
<pre style="border:0 inset;overflow:auto;width:470px;height:25px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">sudo vi /etc/exports</pre>
<ul>
<li>Add your shares to the file</li>
</ul>
<pre style="border:1px inset;overflow:auto;width:470px;height:70px;text-align:left;margin:0;padding:6px;">/home/mach1user/Public *(ro,sync)
/home/mach1user/Documents 100.000.00.01(ro,sync,no_subtree_check)
/home/mach1user/Share 100.000.00.01/20(rw,sync,no_subtree_check)</pre>
<ul>
<li>Make your changes be known</li>
</ul>
<pre style="border:0 inset;overflow:auto;width:470px;height:25px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">sudo exportfs -a</pre>
<p><strong><br />
Configuration in machine 2</strong> (<span style="font-size:85%;">where the shared folder are going to be accessed</span>)</p>
<ul>
<li>Create a folder, where the share will be mounted</li>
</ul>
<pre style="border:0 inset;overflow:auto;width:470px;height:70px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">mkdir /home/mach2user/HomeNetwork/Public
mkdir /home/mach2user/HomeNetwork/Documents
mkdir  /home/mach2user/HomeNetwork/Share</pre>
<ul>
<li>Mount the shares (the IP is from machine 1)</li>
</ul>
<pre style="border:0 inset;overflow:auto;width:470px;height:70px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">sudo mount 100.000.0.05:/home/mach1user/Public /home/mach2user/HomeNetwork/Public
sudo mount 100.000.0.05:/home/mach1user/Documents /home/mach2user/HomeNetwork/Documents
sudo mount 100.000.0.05:/home/mach1user/Share /home/mach2user/HomeNetwork/Share</pre>
<ul>
<li>Make the shares available after rebooting</li>
</ul>
<pre style="border:0 inset;overflow:auto;width:470px;height:25px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">sudo vi /etc/fstab</pre>
<ul>
<li>Add to the file (the IP is from machine 1)</li>
</ul>
<pre style="border:1px inset;overflow:auto;width:470px;height:75px;text-align:left;margin:0;padding:6px;">100.000.0.05:/home/mach1user/Public /home/mach2user/HomeNetwork/Public nfs ro,hard,intr 0 0
100.000.0.05:/home/mach1user/Documents /home/mach2user/HomeNetwork/Documents nfs ro,hard,intr 0 0
100.000.0.05:/home/mach1user/Share /home/mach2user/HomeNetwork/Share nfs ro,hard,intr 0 0</pre>
<p>And that should do it.</p>
<p><strong><br />
Further reading</strong></p>
<ul>
<li><a href="http://czarism.com/easy-peasy-ubuntu-linux-nfs-file-sharing" target="_blank">Easy-Peasy Ubuntu Linux NFS File Sharing</a></li>
<li><a href="http://ubuntu-tutorials.com/index.php?s=NFS" target="_blank">Network File System (NFS) : Ubuntu (6.06 / 6.10)</a></li>
</ul>
<p><span style="font-size:85%;"><span style="font-style:italic;">last updated: 01-05-2008</span></span></p>
<p>___________________________________________________________________________________________________</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lofubuntuxp.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lofubuntuxp.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lofubuntuxp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lofubuntuxp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lofubuntuxp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lofubuntuxp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lofubuntuxp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lofubuntuxp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lofubuntuxp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lofubuntuxp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lofubuntuxp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lofubuntuxp.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lofubuntuxp.wordpress.com&blog=3945211&post=24&subd=lofubuntuxp&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lofubuntuxp.wordpress.com/2008/05/01/nfs-file-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/942a72434f90e8d75ad4358c6ddcef0f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">paapereira</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharing Files with Windows</title>
		<link>http://lofubuntuxp.wordpress.com/2008/03/21/sharing-files-with-windows/</link>
		<comments>http://lofubuntuxp.wordpress.com/2008/03/21/sharing-files-with-windows/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 15:15:00 +0000</pubDate>
		<dc:creator>paapereira</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://lofubuntuxp.wordpress.com/2008/03/21/sharing-files-with-windows/</guid>
		<description><![CDATA[For sharing files with Windows you just have to follow this steps:
Got to System &#62; Administration &#62; Shared Folders

in the Shared Folders tab add the folders you wish to share
in the General Properties tab type the Workgroup of your Network (as in Windows)

In the Terminal add yourself as a Samba user:
sudo smbpasswd -a yourusername
That&#8217;s it. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lofubuntuxp.wordpress.com&blog=3945211&post=12&subd=lofubuntuxp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For sharing files with Windows you just have to follow this steps:</p>
<p>Got to System &gt; Administration &gt; Shared Folders</p>
<ul>
<li>in the Shared Folders tab add the folders you wish to share</li>
<li>in the General Properties tab type the Workgroup of your Network (as in Windows)</li>
</ul>
<p>In the Terminal add yourself as a Samba user:</p>
<pre style="border:0 inset;overflow:auto;width:470px;height:25px;text-align:left;color:#339966;margin:0;padding:6px 6px 6px 36px;">sudo smbpasswd -a yourusername</pre>
<p>That&#8217;s it. You can now access your shared folder using you Linux user.</p>
<p><strong><br />
Further reading</strong></p>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=728764&amp;highlight=share+folder+samba+windows+password" target="_blank">Ubuntu Forum post</a></li>
</ul>
<ul>
<li><a href="https://help.ubuntu.com/7.10/internet/C/networking-shares.html" target="_blank">Ubuntu Documentation</a></li>
</ul>
<p><span style="font-size:85%;"><span style="font-style:italic;">last updated: 21-03-2008</span></span></p>
<p>___________________________________________________________________________________________________</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lofubuntuxp.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lofubuntuxp.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lofubuntuxp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lofubuntuxp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lofubuntuxp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lofubuntuxp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lofubuntuxp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lofubuntuxp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lofubuntuxp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lofubuntuxp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lofubuntuxp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lofubuntuxp.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lofubuntuxp.wordpress.com&blog=3945211&post=12&subd=lofubuntuxp&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lofubuntuxp.wordpress.com/2008/03/21/sharing-files-with-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/942a72434f90e8d75ad4358c6ddcef0f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">paapereira</media:title>
		</media:content>
	</item>
	</channel>
</rss>