Basically you'd start again.
So you would comment out that entry you made from the
fstab
, making sure its no longer mounted & that directory is empty. Maybe reboot the node? (Proxmox will take care of the mounting/fstab on its own).
Then you'd edit the
/etc/pve/storage.cfg
to add that NFS share to Proxmox Storage, selecting only the
rootdir
type for content.
So maybe something like this in your case:
Code:
nfs: truenas_downloads
path /mnt/pve/truenas_downloads
server 192.168.50.16
export /mnt/prox-pool/downloads
options vers=3,soft
content rootdir
Then you'd try creating a bind mount from a subdirectory within
/mnt/pve/truenas_downloads
to the LXC as above
See
here for the PVE Wiki on the NFS backend storage.
I must point out, I've never used it, and you may also have to see how it works out with timings (your original problem) since the NFS share is in fact from a Proxmox VM.
Good luck.