Skip to content

Tag Archives: image

Mounting an ISO Disc Image

Got an iso file? Good! Here’s how to mount it: # mount <ISO image> -r -t iso9660 -o loop /path/to/mount/to

Making a Floppy Disk Image in Linux

1 Introduction It took me a while of searching for this information, so I thought I would document this for both myself and anyone else interested. 2 The Process First, make an empty disk image: $ dd bs=512 count=2880 if=/dev/zero of=floppy.img $ mkfs.msdos floppy.img Next mount your image. Make sure that /mnt/floppy exists! # mount [...]