19

Is there a way to find out if a mount drive, for ex: /var, is mount to an NFS?

PLAND
  • 213
  • 1
  • 2
  • 4

1 Answers1

41

You can just use mount command to check, e.g

mount |grep nfs

Or if you want to list all nfs you've mounted:

mount -l -t nfs4
number5
  • 15,913
  • 3
  • 54
  • 51