pages*: add /dev to the placeholder (#12923)

This commit is contained in:
Sebastiaan Speck
2024-06-11 06:47:57 +02:00
committed by GitHub
parent 1adda9dd4e
commit 289691e746
12 changed files with 25 additions and 25 deletions

View File

@@ -9,7 +9,7 @@
- Attach a file to a given loop device:
`sudo losetup /dev/{{loop}} /{{path/to/file}}`
`sudo losetup {{/dev/loop}} /{{path/to/file}}`
- Attach a file to a new free loop device and scan the device for partitions:
@@ -17,7 +17,7 @@
- Attach a file to a read-only loop device:
`sudo losetup --read-only /dev/{{loop}} /{{path/to/file}}`
`sudo losetup --read-only {{/dev/loop}} /{{path/to/file}}`
- Detach all loop devices:
@@ -25,4 +25,4 @@
- Detach a given loop device:
`sudo losetup -d /dev/{{loop}}`
`sudo losetup -d {{/dev/loop}}`