Steps to Mount and Unmount Image Backups on the VembuVirtualDrive from Linux Backup Server Console
This knowledge base article addresses the challenge of successfully mounting and unmounting image backups on the Linux backup server using the VembuVirtualDrive.
Steps to Mount and Unmount Image Backups:
Once the backup is completed successfully without any issues, you can mount the backup on the backup server side to access image files (VHD, VHDx, VMDK & IMG) from VembuVirtualDrive.
1. Navigate to the Vembu BDR console:
Top menu Management > Click Server Management > Manage Virtual Drive.
2. View the list of available backups for virtual drive mount/unmount.
- Click the "Mount" button for the specific backup you want to mount.
- Confirm the action by clicking "Yes."
3. To mount image files on the VembuVirtualDrive, ensure the fuse package is installed. If not, follow these steps to install:
- To install Fuse package: `apt-get install fuseiso`
- Configure fuse and start in service mode:
sudo adduser vembu fuse
4. Once Fuse is installed, follow these steps to mount .img files available on the BDRSuiteVirtualDrive:
- Predict the image as a file system:
losetup /dev/loop7 ./drive.img
- Find the offset information:
- Multiply the offset value with the sector by 512.
- Mount the image:
mount -o loop,offset=(512*offset value)/dev/loop4 /mnt/lp4
Example: `mount -o loop,offset=32256 /dev/loop4 /mnt/lp4`
- The new disk will be mounted, allowing access to specific files or folders for copying.
5. Once the recovery process is completed, unmount the backup:
- Navigate to VembuBDR console:
- Top menu Management > Click Server Management > Manage Virtual Drive.
- Click the "Unmount" button to proceed with further backups.
Related Articles
Steps to Mount and Unmount Image Backups on the VembuVirtualDrive
KB ID: 115018 Challenge: Mounting and unmounting image backups on the Windows backup server can be a crucial task. Solution: 1. Open the BDRSuite Backup Server console. 2. Navigate to the top menu, select "Management," and click on "Server ...
What are the steps to mount a disk-image backup?
To mount a disk-image backup: Open the BDRSuite Backup Server console Go to the 'Recovery -> Restore Backup Data' page Select the disk-image backup job and click on 'Restore' Choose the machine and select the restore type as 'Disk Mount' Select the ...
Disk Mount: Mount the backed up disks on the backup server's disk management
Disk Mount The Disk Mount Recovery option mounts the backed-up VM’s disk to the Disk Management Service of the Microsoft Windows machine on which the BDRSuite Backup Server is hosted; it is done through BDRSuite Virtual Drive that grants access to ...
What are the steps to mount a VMware backup?
To mount a backup, follow the steps below: Open the BDRSuite Backup Server console Go to the 'Recovery -> Restore Backup Data' page Select the VMware backup job and click on 'Restore' Choose the machine and select the restore type as 'Disk Mount' ...
How to Mount the NFS Share from Linux NFS Server in Windows BDRSuite Server
KB ID: 115909 Introduction This Knowledge Base article provides step-by-step instructions on how to mount an NFS share from a Linux NFS server to a Windows BDRSuite server. Step 1: Install the NFS Client on the Windows BDRSuite Server 1. Open ...