NFS setup on Ubuntu (include fstab)
Hi all, Past of month, I was too busy to write new blog, though I learn a lot of new things from work. During working, my customer asked me to build up the NFS (net file system) for them, so that they can fetch the file between computers by internal network. When It comes to NFS, you might think about SAMBA server, which can be mounted with CIFS. SAMBA is a service compatible with linux and window operating system. Since I just need to make linux OS computer connected, that is no need to build up a SAMBA server on my server PC. So let's start, First of all You have to install the nfs-server and nfs-common on server and client side. you can also check if the service is installed or not by : $ dpkg -l | grep nfs-kernel-server if not, install the service on server and client : Server : # apt-get install nfs-kernel-server Client: # apt-get install nfs-common Now we can go through the step 2 -- setting up server. Server : create the setting ...