Mounting volumes

Listing mounts

  • Listing the volumes mounted from backups.

    acrocmd list mounts

Mounting (Agent for Windows only)

  • Mounting the first volume of the first disk from a backup in the read-only mode. The resulting volume will be assigned letter "Z".

    acrocmd mount --loc=E:\backups --arc=my_archive --backup=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX --volume=1-1 --letter=Z

Mounting (Agent for Linux only)

  • Mounting the first volume of the second disk from the latest backup of an archive located on the srv1 node in the /backups directory exported by NFS.

    acrocmd mount --mount_point=/mnt/md1 --loc=nfs://srv1/backups:/ --arc=my_archive --volume=1-2
  • Mounting the first volume of the first disk from a backup in the read-write mode.

    acrocmd mount --mount_point=/mnt/md2 --loc=/home/backups --arc=mybackup --backup=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX --volume=1-1 --rw

Unmounting (Agent for Windows only)

  • Unmounting a volume.

    acrocmd umount --letter=Z

Unmounting (Agent for Linux only)

  • Unmounting a device mounted at the mount point.

    acrocmd umount --mount_point=/mnt/md1