4.1. Mounting NFS Exports on LinuxΒΆ

You can mount an NFS export created in Acronis Storage like any other directory exported via NFS. You will need the share IP address (or hostname) and the volume identifier. For example:

# mount -t nfs -o vers=4.0 192.168.0.51:/0200000000000002/ /mnt/nfs

where:

  • -o vers=4.0 is the NFS version to use. To use pNFS, change -o vers=4.0 to -o vers=4.1. In all other cases, make sure to always specify NFS version 4.0 or newer.
  • 192.168.0.51 is the share IP address. You can also use the share hostname.
  • /0200000000000002/ is the root export path. For user exports, specify their full path, for example: /0200000000000002/export1.
  • /mnt/nfs is an existing local directory to mount the export to.