Guest User

Untitled

a guest
Dec 15th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Linux server <--> macOS client
  2.  
  3. # ----- Linux
  4. apt-get install nfs-kernel-server
  5.  
  6. # /etc/exports
  7. # macOS likes insecure
  8. /srv/nfs 192.168.64.0/24(rw,async,no_subtree_check,all_squash,anonuid=501,anongid=501,insecure)
  9.  
  10. exportfs -rav
  11. exportfs -v
  12.  
  13. # ----- macOS
  14. # change this Linux IP
  15. showmount -e 192.168.64.22
  16. mount -t nfs 192.168.64.2:/srv/nfs /work/nfs
Add Comment
Please, Sign In to add comment