NFS and ZeroFS

jfmatth

New Member
Apr 25, 2026
1
0
1
Hello,

Love Proxmox, been using for years but first post :)

I am using ZeroFS as my NFS server and am running into odd issues trying to mount NFS as a storage entry.

from the command line on a proxmox node, I can mount the NFS server point

Code:
root@prox-nfs:/etc/pve# mount -o port=2049,mountport=2049,tcp,nolock 192.168.100.50:/proxmox /mnt/zerofs


But when added to /etc/pve/storage.cfg it doesn't work, just shows offline

Code:
nfs: zerofs
        export /proxmox
        path /mnt/pve/zerofs
        server 192.168.100.50
        content backup,iso
        options proto=tcp,port=2049,mountport=2049,nolock,vers=3

Any help is appreciated
 
Last edited:
Comment your "options" line with # in front and it should mount, "mountport" prevent the mount.
Btw. you need "/proxmox" no_root_squash exported otherwise the content line couldn't work.