挂载 Raw 和 QCOW2 格式镜像
挂载 Raw 格式镜像
Mounting The Raw Image
Associate the raw image with a loop device:
1
| losetup /dev/loop0 image.raw
|
Map the partitions to loop devices:
You should be able to mount the partitions now:
1
| mount /dev/mapper/loop0p1 /mnt/t01
|
Unmounting The Raw Image
Unmount the previously mounted partitions:
Undo the mapping of the partitions to the loop devices:
Destroy the loop:
挂载 QCOW2 格式镜像
This is a quick guide to mounting a qcow2 disk images on your host server. This is useful to reset passwords,
edit files, or recover something without the virtual machine running.
Step 1 - Enable NBD on the Host
1
2
3
| if [ "$(lsmod | grep -E '\bnbd\s' -c)" -lt 1 ]; then
modprobe nbd max_part=8
fi
|
Step 2 - Connect the QCOW2 as network block device
1
2
| qemu-nbd --connect=/dev/nbd0 vm-100-disk-1.qcow2
# qemu-nbd -c /dev/nbd0 vm-100-disk-1.qcow2
|
Step 3 - Find The Virtual Machine Partitions
1
2
| # fdisk /dev/nbd0 -l
fdisk /dev/nbd0 -l|grep -E '/dev/.*p[0-9]'|cut -d' ' -f1
|
Step 4 - Mount the partition from the VM
1
2
| mkdir -p /mnt/somepoint/
mount /dev/nbd0p1 /mnt/somepoint/
|
Step 5 - After you done, unmount and disconnect
1
2
3
4
| umount /mnt/somepoint/
qemu-nbd --disconnect /dev/nbd0
# qemu-nbd -d /dev/nbd0
rmmod nbd
|