I am new to linux.i am practising on Ubuntu server and Desktop. I am trying to configure NFS server/Client configuration.But i am unable to configur it. On booting i need to configure it again .
I gone through http://www.ubuntugeek.com/nfs-server-and-client-configuration-in-ubuntu.html
so could anyone please suggest me the material so that i can try to confugre NFS suceessfully.
Steps i tried Install NFS Server in Ubuntu
sudo apt-get install nfs-kernel-server nfs-common portmap
sudo dpkg-reconfigure portmap
sudo /etc/init.d/portmap restart
sudo vi /etc/exports
/etc/exports
For Full Read Write Permissions allowing any computer from 192.168.56.1 through 192.168.56.255
/files 192.168.1.1/24(rw,no_root_squash,async sudo /etc/init.d/nfs-kernel-server restart
sudo exportfs -a
Install NFS client support in Ubuntu
sudo apt-get install portmap nfs-common
sudo mkdir files
sudo mount server.mydomain.com:/files /files
sudo /etc/init.d/portmap restart
sudo /etc/init.d/nfs-common restart