It's a type of Planche
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

loopback_device.sh 331B

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