Created
April 18, 2013 14:46
-
-
Save acdimalev/5413305 to your computer and use it in GitHub Desktop.
dealing with disk images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# losetup --show -f /path/to/disk-image | |
/dev/loop0 | |
# partx -a /dev/loop0 | |
# ls /dev/loop0* | |
/dev/loop0 /dev/loop0p4 | |
# partx -d /dev/loop0 | |
partx: /dev/loop0: error deleting partitions 1-3 | |
# losetup -d /dev/loop0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment