Explorar o código

losetup: added example for --read-only and --partscan (#3792)

z7y8hsBP %!s(int64=5) %!d(string=hai) anos
pai
achega
b80fdb65d8
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      pages/linux/losetup.md

+ 8 - 0
pages/linux/losetup.md

@@ -17,3 +17,11 @@
 - Detach a given loop device:
 
 `sudo losetup -d /dev/{{loop}}`
+
+- 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}}`