Debian mount NFS share
07 Oct 2020Another cheat sheet, this one is for mounting NFS shares on boot in Debian 10.
First we need to install nfs-common
$ sudo apt install nfs-common
and then add the NFS mount line to fstab
192.168.1.14:/nfs-share /nfs-mount nfs rw,noatime 0 0
where 192.168.1.14
is the IP address for your server and /nfs-share
is the path to the share.