Setting Up A NFS Service: Difference between revisions

From RidgeRun Developer Wiki
(Created page with 'Please install the following packages: RR@RidgeRun:~$ sudo apt­get install nfs­kernel­server nfs­common portmap Modify the /etc/exports file adding at the end of this file...')
 
No edit summary
Line 1: Line 1:
Please install the following packages:
Please install the following packages:
<pre>
RR@RidgeRun:~$  sudo apt­get install nfs­kernel­server nfs­common portmap
RR@RidgeRun:~$  sudo apt­get install nfs­kernel­server nfs­common portmap
</pre>


Modify the /etc/exports file adding at the end of this file the following line:


Modify the /etc/exports file adding at the end of this file the following line:
<pre>
/home/ *(rw,insecure,no_root_squash,no_subtree_check)
/home/ *(rw,insecure,no_root_squash,no_subtree_check)
</pre>


Restart the NFS server:


Restart the NFS server:
<pre>
RR@RidgeRun:~$ sudo /etc/init.d/nfs­kernel­server restart
RR@RidgeRun:~$ sudo /etc/init.d/nfs­kernel­server restart
</pre>

Revision as of 18:40, 16 July 2010

Please install the following packages:

RR@RidgeRun:~$  sudo apt­get install nfs­kernel­server nfs­common portmap

Modify the /etc/exports file adding at the end of this file the following line:

/home/ *(rw,insecure,no_root_squash,no_subtree_check)

Restart the NFS server:

RR@RidgeRun:~$ sudo /etc/init.d/nfs­kernel­server restart