It's a type of Planche
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

16 Zeilen
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