Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 464 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 464 Bytes

fuseqemu

Fork of https://github.com/vi/fusenbd

A FUSE mounter for QEMU block device images (qcow/qcow2/...).

Dependencies:

  • qemu-nbd (apt-get install -y qemu-utils)

Example

qemu-img create -f qcow2 image.qcow 1G

./fuseqemu image.qcow image.dd &

while ! test -s image.dd; do sleep 1; done

mkfs.ext4 image.dd

mkdir image.mnt

./lklfuse image.dd image.mnt -o type=ext4

ls -la image.mnt

fusermount -u image.mnt

fusermount -u image.dd