Manually mount Volumes for file level recovery
You can mount volumes to Windows Virtual Machines (VMs) using the Windows Disk Partitioning tool or Windows Server Manager. Mounting of volumes must be with read-only permission.
Using the Windows Disk Partitioning tool
Use the following steps to mount volumes using Windows Disk Partitioning tool.
Steps
- Log in to the instance.
- Open PowerShell and run the command diskpart.
- Type list disk to find the offline disk which is the newly attached volume.
- Type select disk # where # is the number of the offline disk.
- Type online disk to mount the selected disk.
- Type exit to exit the diskpart tool.
Using Windows Server Manager
Use the following steps to mount volumes using Windows Server Manager.
Steps
Mount attached volumes to Linux VMs
You can mount attached volumes to Linux VMs using the following steps.
Steps
- Log in to the instance as a user with administrator privileges.
-
Run the following commands:
- sudo fdisk -l (Make a note of the device ID of the newly attached volume)
- sudo mount -o ro /<<device id>> /<<mount point>>