Qemu Mount Virtual Images
1 min read
July 22, 2023
26 words
Mounting the image
apt-get install -y libguestfs-tools
# Mounting
guestmount -a windows.qcow2 /mnt/
# Mounting read-only mode
guestmount -a windows.qcow2 /mnt/ --ro
# Unmount
guestunmount /mnt