I have the following NFS export on my server, with fsid
set to a newly generated UUID.
/etc/exports:
/mnt/data client(ro,fsid=b07f5af6-6b10-11e3-b4c1-00248115724d)
I would then run exportfs -rav
which returns no errors, but I don't know how to mount this on the client.
If fsid
is set to 0
or root
I can mount as follows:
# mount server:/ /mnt/Media
How do I reference the UUID in the mount command or /etc/fstab file?
The following do not work:
server:$uuid
server:/$uuid
server:UUID=$uuid
server:/UUID=$uuid
Failing with the error: mount.nfs: Operation not permitted