Quote:
Originally Posted by bsteiner
Any good resources on the setup of NFS, or could you give me a quick walkthrough? As I said I am a little green on linux. Thank you for your help.
|
NFS is pretty simple. Edit /etc/exports (man exports for info) and list the directories to share with the hosts to share them to. On the client side, "mount nfsserver:/path /localpath" and that's about it. The docs for /etc/exports I think are complete enough to get you going.
Here's a share from a system I manage:
/data/backups \ 10.1.0.0/24(rw,root_squash,no_all_squash,sync,anonuid=65534,anongid=65534)
But you don't need basically any of the options I've given, probably:
/path/to/files ho.st.i.p
Is all you need in your case
Ciao,
- Archangel