Setting up NFS
Server setup
1) Edit /etc/exports
Add the directory you want to share, the IP range to share it to, and the permissions.
/storage/ofin/ 192.168.1.*(rw,sync,no_root_squash)
2) service portmap start
3) service nfs start
4) exportfs -v
Client setup
1) service portmap start
2) service nfslock start
3) mount -t nfs 192.168.1.99:/storage/ofin /mnt
1) Edit /etc/exports
Add the directory you want to share, the IP range to share it to, and the permissions.
/storage/ofin/ 192.168.1.*(rw,sync,no_root_squash)
2) service portmap start
3) service nfs start
4) exportfs -v
Client setup
1) service portmap start
2) service nfslock start
3) mount -t nfs 192.168.1.99:/storage/ofin /mnt
<< Home