It's a type of Planche
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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