data
mkdir -m 1777 home</code>
Then bind mount /data and /home to /nfs4exports/data and /nfs4exports/home respectivly.
<code>mount --bind /data data
mount --bind /home home </code>
To make thes... and similar to this:
<code>mount -t nfs4 server:/data /data</code>
Or if you are mounting at boot time an entry in /etc/fstab like this:
<code>server:/data /data nfs4 rw 0 0</code>
The bind mounts on the ser