You are on page 1of 1

NFS(network file system):

Server:
1.create a partition ,apply file system on it and mount with some path
2.create a file which we want to transfer on mounted path
3.check for packages of nfs #rpm qa nfs-utils
4.edit /etc/exports configuration file
File path ip address (permissions)
/opt/oracle/grid/testnfs 192.168.18.11(rw,sync)
5.verifing the file to be transferred
#cat /var/lib/nfs/etab
6.resatrt the services of nfs
#service nfs restart
Client:
1. check for packages of nfs #rpm qa nfs-utils
2.start nfs service
3.check which directory is exported for this machine using showmount command
#showmount e ip of server
4.make a directory and mount the NFS dir over it
#mount t nfs 192.168.18.12: /opt/oracle/grid/test /directory

You might also like