Difference between revisions of "Mount a qcow2 disk image"
From DevOps Notebook
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
− | + | modprobe nbd max_part=8 | |
− | + | qemu-nbd --connect=/dev/nbd0 /var/lib/vz/images/100/vm-100-disk-1.qcow2 | |
− | + | fdisk /dev/nbd0 -l | |
− | + | mount /dev/nbd0p1 /mnt/somepoint/ | |
− | + | umount /mnt/somepoint/ | |
− | + | qemu-nbd --disconnect /dev/nbd0 | |
− | + | rmmod nbd | |
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:33, 12 July 2021
modprobe nbd max_part=8
qemu-nbd --connect=/dev/nbd0 /var/lib/vz/images/100/vm-100-disk-1.qcow2
fdisk /dev/nbd0 -l
mount /dev/nbd0p1 /mnt/somepoint/
umount /mnt/somepoint/
qemu-nbd --disconnect /dev/nbd0
rmmod nbd