I apologize; I’m sure this is somewhere on the forum but by search fu isn failing me today.
The newest threads I could find on the old forum were from 2022, and it looked like 4.2 support was still a bit of a work in progress.
What’s the version of NFS in this version of SCALE? Proxmox lets me specify NFS 4.1 or 4.2 to enable certain features. Is 4.2 fully supported yet?
izenn
2
the debian package for nfs that is installed is version 2.6.2-4 which is the same as what is used in bookworm. the changelog can be found here:
https://launchpad.net/debian/+source/nfs-utils/+changelog
from the client you can see the version that is being used by executing:
nfsstat -m
the version will be in the vers= flag
on the server side you can do:
$ sudo cat /proc/fs/nfsd/versions
+3 +4 +4.1 +4.2
which shows all the available versions the server can connect using. the above was taken from my 24.4.0 system
1 Like
Awesome. This is exactly what I needed.
Thanks!