Network File System

From Elvanör's Technical Wiki
Revision as of 13:29, 18 July 2022 by Elvanor (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Crashed NFS server

  • You can unmount a non-responsive NFS server by using the -l (lazy) option:
umount -l /mnt/data

Adding a NFS share

  • Just edit /etc/exports:
/mnt/data  192.168.0.0/24(rw,sync)
  • This would grant access to all IPs in range 192.168.0.*. You may need to restart the server (/etc/init.d/nfs restart) for the share to be actually added.