Pages

Sunday, November 8, 2009

NFS for MAC to VM

Need to refine this when installing a fresh Fedora Core VM

The thing I always forget is to export the changes to allow the shares to operate
exportfs -ra

/etc/exports
/share 192.168.56.0/255.255.255(rw,root_squash,insecure,sync)

/etc/hosts.allow
portmap: 192.168.56.0/255.255.255.0
lockd: 192.168.56.0/255.255.255.0
rqotad: 192.168.56.0/255.255.255.0
mountd: 192.168.56.0/255.255.255.0
statd: 192.168.56.0/255.255.255.0

/etc/hosts.deny
portmap: ALL
lockd: ALL
rqotad: ALL
mountd: ALL
statd: ALL

After creating the share, touch a file and create a user/group to match whatever linux produces. I would eventually like to be able to made the connection use a particular user/group.

Reference

No comments:

Post a Comment