Last active
September 27, 2016 07:12
-
-
Save bom-d-van/dbdf040ac445852295e41f21c84a0a1e to your computer and use it in GitHub Desktop.
NFS: OSX Server and Linux Client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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