Linux - Find nfs version, How to find NFS version on linux host

Find nfs version

How do you find NFS version on a UNIX or Linux host?

The NFS service will be listed in the fourth column titled service. The NFS version will be listed in the second column.

To find the NFS version bellow commands can be used
# rpcinfo -p | grep nfs

 program  vers proto   port  service  
  102303    2   udp    2049    nfs
  102303    3   udp    2049    nfs
  102303    4   tcp    2049    nfs
  102303    2   tcp    2049    nfs
  102303    4   tcp    2049    nfs
  102303    3   tcp    2049    nfs

To find the installed NFS packages
 # yum --version nfs

To display statistics for each NFS mounted file
 # nfsstat -m 

The topic on Linux - Find nfs version is posted by - Maha

Hope you have enjoyed, Linux - Find nfs versionThanks for your time

Tech Bluff