System Grab Bag

View all TLDR pages from Linux (or from all pages)

losetup

Set up and control loop devices. More information: https://manned.org/losetup.
  • List loop devices with detailed info:
    losetup -a
  • Attach a file to a given loop device:
    sudo losetup /dev/{{loop}} /{{path/to/file}}
  • Attach a file to a new free loop device and scan the device for partitions:
    sudo losetup --show --partscan -f /{{path/to/file}}
  • Attach a file to a read-only loop device:
    sudo losetup --read-only /dev/{{loop}} /{{path/to/file}}
  • Detach all loop devices:
    sudo losetup -D
  • Detach a given loop device:
    sudo losetup -d /dev/{{loop}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.