I am having issues mounting an image I created with the qemu-img program. Every time I attempt to invoke mount upon the subsequent file, it responds with failed to setup loop device: No such file or directory.
It does not matter which user I invoke the following commands under, it continuously fails (su - or not).
$ qemu-img create flash.img 512M
$ mkfs.ext2 -L "FLASH001" flash.img
$ mount -t ext2 -o loop,rw flash.img /mnt/dfs/
Is there anything that I am missing? I have a typical Arch Linux install with all of the above commands installed from the Arch Linux repositories.