Configure NFS access to the linkstation
Install nfs with the command:
# apt-get install nfs-kernel-server
Then add an entry to the /etc/exports file which will share the /mnt/disk1/share directory:
/mnt/disk1/share *(rw,wdelay,sync,all_squash,no_subtree_check,anonuid=99,anongid=99)
Note that anonuid and anongid can be changed to the uid/gid of your preferred user. 99 is the nobody account in Free Link.
After any change to /etc/exports, run exportfs to make your changes live:
# exportfs -a
Configuring samba to be passwordless.
Edit your /etc/samba/smb.conf
Add the following to the [global] section:
security = share
And the following to the [Share] section
create mask = 0777
directory mask = 0777
Resources
--
JesseSuen - 04 Sep 2007