It's a type of Planche
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
331B

  1. # If an available /dev/loop device is
  2. # known before running the command
  3. # losetup /dev/loop0 floppy.img
  4. # Use the first available /dev/loopN device
  5. losetup -f floppy.img
  6. # Create the filesystem
  7. mkfs.xfs /dev/loop0
  8. # Destroy loopback device
  9. losetup -d /dev/loop0
  10. # Mount the loopback image
  11. mount -o loop -t xfs floppy.img /mnt