User's Manual
Doc #: 1ANSU-160004
DNI SGDC-D22 User Manual
i. 21
7.2. NFS (Network File System)
Before using NFS, a NFS server is needed. To create a NFS server on your PC, please refer to:
Linux: http://tldp.org/HOWTO/NFS-HOWTO/server.html
Windows: http://sourceforge.net/projects/freenfs/
When your NFS server is ready, please execute the following commands to connect to your NFS server.
Create a directory for NFS:
# mkdir -p /mnt/nfs
Mount NFS server directory to your local directory:
# mount -t nfs -o nolock server_IP:/directory /mnt/nfs
Finally, you can use df command to check the information of NFS directory you mounted.
# df
Figure 14, Mount a remote directory to the local one via NFS.
If you want to disconnect and umount from the NFS server, use the command below:
# umount /mnt/nfs