Answers

Question and Answer:

  Home  Linux General

⟩ How nfs server works in Linux.........please mention the nfs server working process?

NFS is used to share a directory in a network of Linux

machines .

configuration of NFS:

NFS SERVER:

yum install nfs*

vim /etc/exports -> press enter then type

/directory name *(rw,sync)

save -> wq

service portmap restart

service nfs restart

chkconfig portmap on

chkconfig nfs on

Another Linux PC:-

mount -t nfs (ipaddress of nfs server):/muj /opt

cd /opt

ls -> it will display all the content of the directory

 146 views

More Questions for you: