- instalamos el paquete
apt install nfs-common
- Abrimos el archivo
nano /etc/fstab
- Y agregamos los datos del NFS (por ejemplo)
10.0.3.139:/MDNFS /MDNFS nfs defaults 0 0
- Mandamos a montar
mount -a
- Si dice
mount: (hint) your fstab has been modified, but systemd still uses
the old version; use 'systemctl daemon-reload' to reload
- ejecutamos
systemctl daemon-reload
- podemos ver la unidad montada con el siguiente comando
df -h | grep /MDNFS
Desmontar
- La desmonatamos
umount /MDNFS
- Verificamos
df -h | grep /MDNFS
- abrimos el archivo
nano /etc/fstab