Hello guys
I have a working nfs server (192.168.1.11) which I would mount to my data folder on an Jetson AGX.
i added the Jetson ip in the nfs server white list and made sure nfs-common was installed on my Jetson.
I used : sudo mount -vvvv 192.168.1.11:/Dev_Layer /home/jetson/Projects/Data/test
witch gave me
mount.nfs: timeout set for Mon Aug 30 18:44:01 2021
mount.nfs: trying text-based options ‘vers=4.2,addr=192.168.1.11,clientaddr=192.168.1.25’
mount.nfs: mount(2): Protocol not supported
mount.nfs: trying text-based options ‘vers=4.1,addr=192.168.1.11,clientaddr=192.168.1.25’
mount.nfs: mount(2): Protocol not supported
mount.nfs: trying text-based options ‘vers=4.0,addr=192.168.1.11,clientaddr=192.168.1.25’
mount.nfs: mount(2): Protocol not supported
mount.nfs: trying text-based options ‘addr=192.168.1.11’
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: trying 192.168.1.11 prog 100003 vers 3 prot TCP port 2049
mount.nfs: portmap query retrying: RPC: Program/version mismatch
mount.nfs: prog 100003, trying vers=3, prot=17
mount.nfs: portmap query failed: RPC: Program not registered
mount.nfs: requested NFS version or transport protocol is not supported
I made sure the nfs server was reachable by my jetson using showmount -e 192.168.1.11
witch showed me the NFS path and it allowed ips including my Jetson
I tried the same nfs path on another linux server (raspberry / Debian) to make sure the issue wasn’t on the server side and it was working.
100% sure the issue is client side (Jetson) but i’m clueless about what to check/do , any idea please ?