I just kicked out my "freenas" and trying to get TCL 3.3 to do the work instead.
I'm using mdadm to create a stripe ext4 mounted on /mnt/md0.
Installed the nfs-utils and created the folder /mnt/md0/Dreambox did a chmod 777 on the folder to gain acces for everybody.
My /etc/exports is as follows
# /etc/export
/mnt/md0/Dreambox *(rw,insecure,all_squash,anonuid=65534,anongid=65535)
this should give when trying to mount the share as root on the client a nobody user and group at the server
At the client
root@dm800:~# mount -t nfs 192.168.2.222:/mnt/md0/Dreambox /media/nfs
gives :
mount: 192.168.2.222:/mnt/md0/Dreambox failed, reason given by server: Permission denied
mount: nfsmount failed: Bad file descriptor
mount: Mounting 192.168.2.222:/mnt/md0/Dreambox on /media/nfs failed: Invalid argument
What I'm I doing wrong ?