<?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>ramraje.com &#187; File system</title>
	<atom:link href="http://www.ramraje.com/tag/file-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ramraje.com</link>
	<description>Software Programming Blog</description>
	<lastBuildDate>Mon, 19 Dec 2011 08:56:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>NFS file system in Linux</title>
		<link>http://www.ramraje.com/linux/nfs-file-system-in-linux/</link>
		<comments>http://www.ramraje.com/linux/nfs-file-system-in-linux/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 16:15:42 +0000</pubDate>
		<dc:creator>Ramraj Edagutti</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[File system]]></category>
		<category><![CDATA[NFS]]></category>

		<guid isPermaLink="false">http://www.ramraje.com/?p=143</guid>
		<description><![CDATA[NFS stands for Network File System. And this is the one which is most widely used file system on Linux operating system based computers. Using this file system you can actually mount a file(s) from one Linux computer to another Linux computer if the both system are in the same network(LAN). Mounting means just copying [...]<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.ramraje.com/linux/nfs-file-system-in-linux/' addthis:title='NFS file system in Linux '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>NFS stands for Network File System. And this is the one which is most widely used file system on Linux operating system based computers. Using this file system you can actually mount a file(s) from one Linux computer to another Linux computer if the both system are in the same network(LAN).<span id="more-143"></span></p>
<p>Mounting means just copying the files from source Linux machine to the target Linux machine, to be exact it is  not exactly copy, but it is a link  to the file(s) from the source computer through LAN network and you would see all the files as those were local files.</p>
<p>To have this NFS file system in your computer, you should have NFS service daemon and portmap service daemon installed, and most probably these service comes with your linux operating system.</p>
<p>To check if the NFS and portmap service daemons installed or not, run below commands</p>
<blockquote><p>service portmap status</p></blockquote>
<p>If portmap is already installed, it will shows the status otherwise shows unrecognized service.</p>
<blockquote><p>service nfs status</p></blockquote>
<p>If NFS is already installed, it will shows the status otherwise shows unrecognized service.</p>
<p>Finally, to mount file/files from one computer to another computer, run below command</p>
<blockquote><p>mount -t nfs &lt;target_host_ip&gt;:/file/path /file/path</p></blockquote>
<p>&lt;target_host_ip&gt;:/file/path &#8211; target is the your target linux computer and /file/path is file path that you want to mount or copy to the another machine. The path should be from root.</p>
<p>Second argument &#8220;/file/path&#8221; is the folder path in your target linux  box, and this should be exist, mean you should create it before doing mount.</p>
<p>I hope you this help in mounting files between linux machines.</p>
<p>Leave a comment, If you find it useful or you have any doubts or you can mail me also, find my email at contact me page.</p>
<p><strong><span style="font-size: 10pt; font-family: Tahoma;"><br />
</span></strong></p>
<blockquote><p><strong><span style="font-size: 10pt; font-family: Tahoma;"><br />
</span></strong></p></blockquote>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.ramraje.com/linux/nfs-file-system-in-linux/' addthis:title='NFS file system in Linux '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ramraje.com/linux/nfs-file-system-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

