Tutorials/NFS
From LinutopWiki
[edit]
NFS shares
Prerequisites
- You need to configure an NFS server (see http://nfs.sourceforge.net/)
Mounting the filesystem
The shared directories will be seen as devices, and thus need to be 'mounted'. To do so:
mkdir mountpoint/ sudo mount -t nfs -o noclock ser.ver.i.p:/path/to/shared/folder mountpoint/
The noclock option is needed here. It avoids the installation of portmap and nfs-common packages.
Other options can be added, please refer to the nfs documentation.