It's a type of Planche
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415
  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