NFS notes
Running on Ubuntu Hardy
References
- SettingUpNFSHowTo - Community Ubuntu Documentation
- Cool Solutions: A Tour of NFS
man exports
- Red Hat Documentation - NFS
- NFS Troubleshooting
Open ports in firewall
If necessary, open port TCP 2049
On NFS Server
- Install NFS server
apt-get install nfs-kernel-server
- Edit
/etc/exports
On NFS Client
- Install NFS client
apt-get install nfs-common
- Mount remote path
mkdir -p /my/local/path mount myremote.host.com:/my/remote/path /my/local/path
