<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.christophchamp.com/index.php?action=history&amp;feed=atom&amp;title=NFS</id>
		<title>NFS - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.christophchamp.com/index.php?action=history&amp;feed=atom&amp;title=NFS"/>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=NFS&amp;action=history"/>
		<updated>2026-04-30T15:22:45Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>http://wiki.christophchamp.com/index.php?title=NFS&amp;diff=6640&amp;oldid=prev</id>
		<title>Christoph: Christoph moved page Nfs to NFS</title>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=NFS&amp;diff=6640&amp;oldid=prev"/>
				<updated>2016-08-16T00:32:02Z</updated>
		
		<summary type="html">&lt;p&gt;Christoph moved page &lt;a href=&quot;/index.php?title=Nfs&quot; class=&quot;mw-redirect&quot; title=&quot;Nfs&quot;&gt;Nfs&lt;/a&gt; to &lt;a href=&quot;/index.php?title=NFS&quot; title=&quot;NFS&quot;&gt;NFS&lt;/a&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 00:32, 16 August 2016&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Christoph</name></author>	</entry>

	<entry>
		<id>http://wiki.christophchamp.com/index.php?title=NFS&amp;diff=6639&amp;oldid=prev</id>
		<title>Christoph: Created page with &quot;'''Network File System''' ('''NFS''') is a distributed file system protocol allowing a user on a client computer to access files over a computer network much like local storag...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=NFS&amp;diff=6639&amp;oldid=prev"/>
				<updated>2016-08-15T23:32:31Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Network File System&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;#039;NFS&amp;#039;&amp;#039;&amp;#039;) is a distributed file system protocol allowing a user on a client computer to access files over a computer network much like local storag...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''Network File System''' ('''NFS''') is a distributed file system protocol allowing a user on a client computer to access files over a computer network much like local storage is accessed.&lt;br /&gt;
&lt;br /&gt;
==Install and configure NFS==&lt;br /&gt;
''Note: The following is for the NFS master and client running on CentOS 6.''&lt;br /&gt;
&lt;br /&gt;
* Assumptions:&lt;br /&gt;
** Master IP: 192.168.200.204&lt;br /&gt;
** Client IP: 192.168.200.203&lt;br /&gt;
&lt;br /&gt;
===Setup the master===&lt;br /&gt;
* Install the following NFS packages:&lt;br /&gt;
 $ yum install nfs-utils nfs-utils-lib&lt;br /&gt;
&lt;br /&gt;
* Start services and make them persistent:&lt;br /&gt;
 $ chkconfig nfs on &lt;br /&gt;
 $ service rpcbind start&lt;br /&gt;
 $ service nfs start&lt;br /&gt;
&lt;br /&gt;
* Add the following line to &amp;lt;code&amp;gt;/etc/exports&amp;lt;/code&amp;gt;:&lt;br /&gt;
 /data	192.168.200.203(rw,sync,no_root_squash,no_subtree_check)&lt;br /&gt;
&lt;br /&gt;
* Export the &amp;lt;code&amp;gt;/data&amp;lt;/code&amp;gt; path:&lt;br /&gt;
 $ exportfs -a&lt;br /&gt;
&lt;br /&gt;
===Setup the client===&lt;br /&gt;
* Install the following NFS packages:&lt;br /&gt;
 $ yum install nfs-utils nfs-utils-lib&lt;br /&gt;
&lt;br /&gt;
* Create the directory that will contain the NFS shared files:&lt;br /&gt;
 $ mkdir -p /mnt/nfs/data&lt;br /&gt;
&lt;br /&gt;
* Mount the NFS share:&lt;br /&gt;
 $ mount 192.168.200.204:/data /mnt/nfs/data&lt;br /&gt;
&lt;br /&gt;
* Check that it is mounted:&lt;br /&gt;
 $ df -h&lt;br /&gt;
 $ mount | grep nfs&lt;br /&gt;
 sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)&lt;br /&gt;
 192.168.200.204:/data on /mnt/nfs/data type nfs (rw,vers=4,addr=192.168.200.204,clientaddr=192.168.200.203)&lt;br /&gt;
&lt;br /&gt;
===Test the NFS mount===&lt;br /&gt;
* On the client:&lt;br /&gt;
 $ echo &amp;quot;Hello, world&amp;quot; &amp;gt; /mnt/nfs/data/helloworld&lt;br /&gt;
&lt;br /&gt;
* On the master&lt;br /&gt;
 $ cat /data/helloworld&lt;br /&gt;
 Hello, world&lt;br /&gt;
&lt;br /&gt;
It works.&lt;br /&gt;
&lt;br /&gt;
* Make the NFS mount persistent by adding the following line to the client's &amp;lt;code&amp;gt;/etc/fstab&amp;lt;/code&amp;gt;:&lt;br /&gt;
 192.168.200.204:/data   /mnt/nfs/data   nfs   auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 0&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://tools.ietf.org/html/rfc5661 RFC 5661]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical and Specialized Skills]]&lt;br /&gt;
[[Category:Linux Command Line Tools]]&lt;/div&gt;</summary>
		<author><name>Christoph</name></author>	</entry>

	</feed>