Linux General Question:
Download Questions PDF

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

Answer:

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

Download Linux General Interview Questions And Answers PDF

Previous QuestionNext Question
How many types of user accounts are available in Linux OS?What is the difference between samba and ftp server in Linux?