June 2016
Intermediate to advanced
152 pages
3h 30m
English
NFS, or Network File System, was initially created by Sun Microsystems to allow clients to access remote file shares on Unix systems back in the 80s. NFS is trivial to set up and is typically rather fast, but it can introduce some interesting security issues if it is not done correctly.
sudo apt-get install nfs-kernel-server
/etc/exports:
/directory/to/share client(options)
sudo apt-get install nfs-common
mount -t nfs4 server:/directory/to/share /mountpoint
The nice thing about NFS is how trivial it is to set up. You simply install the NFS server, configure /etc/exports and go. The only real details to ...
Read now
Unlock full access