#1 it's nfs stuff, the server is FreeBSD 14.3 with NFSv3, the client is MacOS.
The problem is after mounting, the directory showed out but all empty.
Here is the part for FreeBSD NFS server:
Here is the part of MacOS client:
Ever tried options like -o resvport etc.
Please let me know if need more information, thank you.
The problem is after mounting, the directory showed out but all empty.
Here is the part for FreeBSD NFS server:
Code:
# cat /etc/rc.conf
# Set NFS service
nfs_server_enable="YES"
rpcbind_enable="YES"
mountd_enable="YES"
rpc_lockd_enable="YES"
rpc_statd_enable="YES"
mountd_flags="-r -p 4046"
rpc_lockd_flags="-p 4045"
rpc_statd_flags="-p 4047"
Code:
# cat /etc/exports
/data -alldirs -mapall=1001 -network 192.168.31 -mask 255.255.255.0
Here is the part of MacOS client:
Code:
cat /etc/nfs.conf
#
# nfs.conf: the NFS configuration file, man mount_nfs
#nfs.client.mount.options = intr
Code:
% sudo mount -t nfs 192.168.31.240:/data /Users/jazzi/nfs
Ever tried options like -o resvport etc.
Please let me know if need more information, thank you.