| « HOWTO: Setup apt-cacher, caching service for installation packages | HOWTO Setup and Configure Autofs » |
The Network File System (NFS) was developed to allow machines to mount a disk partition on a remote machine as if it were a local disk. It allows for fast, seamless sharing of files across a network.
I stopped using NFS for remote file systems. When I got autofs working. See my HOWTO set up Autofs.
...
When configuring portmap do not bind loopback. If you do you can either edit /etc/default/portmap by hand or run:
sudo dpkg-reconfigure portmap
The /etc/exports file is used for creating a share on the NFS server
Add some exports (shares) (allow IP 192.168.0.(0-255) )
/data 192.168.0.0/255.255.255.0(rw,no_subtree_check,sync)
These lines export the directories /data and /home from the local host a limited range of IP addresses and hostnames with read/write access. See man exports for more details. After making your edits save and restart the NFS daemon.
The Official HOWTO is very good you should read it. ![]()
Pages: 1· 2