80
// Popcorn Hour A-210
7.1.3 NFS Shares (Network File System)
7.1.3.1 haneWIN NFS Server
For information on the haneWIN NFS Server, visit
http://www.hanewin.net/
7.1.3.2 Setting up NFS Shares on Linux OS
Follow the steps below to set up a NFS share on Linux OS.
1. Configure the kernel to include the NFS file-system and server support.
2. Edit the
/etc/exports
file and add the following commands as a new line:
<access path> <allowed IP address range+permissions>
For example:
/home/share 192.168.0.0/24(rw)
This will share the
/home/share
folder to everyone in the
192.168.0.x
network with Read
and Write
(rw)
permissions.
3. Run
/usr/sbin/exportfs -a
to update the changes.