We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using qemu-nbd kernel module, we could mount qcow2 blocks on the container directory.
The module is loaded issuing
apt install qemu-utlis modprobe nbd
This is an example of mapping an image file into a block device qemu-nbd -c /dev/nbd0 /var/lib/vz/images/107/vm-107-disk-1.qcow2
qemu-nbd -c /dev/nbd0 /var/lib/vz/images/107/vm-107-disk-1.qcow2
Then we could mount it as a regular volume.
To unmap the image file qemu-nbd -d /dev/nbd0
qemu-nbd -d /dev/nbd0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using qemu-nbd kernel module, we could mount qcow2 blocks on the container directory.
The module is loaded issuing
This is an example of mapping an image file into a block device
qemu-nbd -c /dev/nbd0 /var/lib/vz/images/107/vm-107-disk-1.qcow2
Then we could mount it as a regular volume.
To unmap the image file
qemu-nbd -d /dev/nbd0
The text was updated successfully, but these errors were encountered: