Originally posted by lookmark:
<STRONG>Can anyone provide help in connecting a Linux and OS X machine? Both machines are ethernet-ready,
Thanks...</STRONG>
You should be able to use NFS to mount each computer's disk on the other.
I've only mounted a Linux disk on my Mac, not the other way around.
To do this take a look at the man page for exports:
man 5 exports
You basically edit/create the file /etc/exports
Here's what mine looks like:
/home fluorite(rw,insecure) tidave(rw,insecure)
This one line just says two machines, fluorite and tidave, are allowed
to access /home. In the parentheses are the options. rw is read-write.
insecure allows requests on ports above 1023 (which is what the Mac uses).
Once you've created the /etc/exports you should be able to just restart
NFS.
As root do the following:
/etc/init.d/nfs restart
On the Mac end you can just use the finder to mount the Linux box by
hitting command-K. For the address I use the following
nfs://thermite/home
thermite is the name of my Linux machine, and /home is the file system.
Like I said, I haven't tried mounting the other direction, but it would
be something similar. Configure nfs on the Mac to export the files
system. Then mount the disk on the Linux machine. For Linux you create
a mount point directory and then use the "mount" command.
dave