Quote Originally Posted by mr0mega
ok, update

on my usb disk there are two folders called Disk and usb, in the nfs section of the settings I added:

/disk
/usb

Now, when I reference these files I get

John-Yourens-Computer:~ johnyouren$ mount -tnfs 192.168.1.1:/disk /Mount
mount_nfs: can't access /disk: Permission denied
John-Yourens-Computer:~ johnyouren$ mount -tnfs 192.168.1.1:/disk /Mount
mount_nfs: can't access /disk: No such file or directory

it seems to flip between permission denied and no such file or directory :S


Also, if I type

smb://192.168.1.1

in my 'Go To Server' box on my mac it won't connect
You need to setup exports in the right way. Start reading /etc/exports man page. Every line in the exports list should be valid line for the /etc/exports, as it's copied directly. For simple setup you could use this single entry:
Code:
/tmp/harddisk 192.168.1.0/24(rw,async,no_root_squash)
This will export your storage to all clients on the LAN.
You could then mount it like this:
Code:
mount -tnfs -orsize=32768,wsize=32768 192.168.1.1:/tmp/harddisk /mount_point