Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Also portmap has been renamed to rpcbind (and I think it’s installed when you install nfs-common).
This is missing in tutorial: server $ sudo service nfs-kernel-server start client $ sudo chmod og+w /mnt/nfs/home
now it mounts… :P
once in a blue moon I find a really good tutorial.
Yours is one of them. Thank you. Really thankyou.
I am and old user of nfs. but sometimes I need to refresh my memory with some parameters. That is why I found you.
Keep the good work.
:-( On the server: $ service nfs-kernel-server start FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
Tutorial worked like a charm, but when using rsync to move files from one server to another, the files aren’t removed from the source server… for example: rsync -avh --remove-source-files --progress /mnt/nfs/xfer/series /srv/fs1/work/iso
I’d been using cifs for this but it was painfully slow on linux to linux … NFS is much faster.
I’ve got the nfs mount as follows in fstab:
192.168.0.50:/srv/xfer /mnt/nfs/xfer nfs auto,noatime,nolock,bg,nfsvers=3,rsize=32768,wsize=32768,intr,tcp,actimeo=1800 0 0
the export from the nfs server is:
/srv/xfer 192.168.0.42(rw,sync,no_root_squash,no_subtree_check)
all folders and files within /srv/xfer are owned by nobody with nogroup
Any ideas?
Thanks!