Skip to content

Instantly share code, notes, and snippets.

@bom-d-van
Last active September 27, 2016 07:12
Show Gist options
  • Select an option

  • Save bom-d-van/dbdf040ac445852295e41f21c84a0a1e to your computer and use it in GitHub Desktop.

Select an option

Save bom-d-van/dbdf040ac445852295e41f21c84a0a1e to your computer and use it in GitHub Desktop.
NFS: OSX Server and Linux Client
# http://www.barryodonovan.com/2012/12/12/apple-os-x-as-an-nfs-server-with-linux-clients
echo "/Volumes/DATA-1 -maproot=root:wheel -network 192.168.56.0 -mask 255.255.255.0" >> /etc/exports
sudo nfsd enable
sudo nfsd start
# http://www.tldp.org/LDP/nag2/x-087-2-nfs.mountd.html
# https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/3/html/System_Administration_Guide/s1-nfs-mount.html
# checking
showmount -e moonshot
# mount
mount -o tcp moonshot:/path /path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment