tldr/pages/osx/hdiutil.md

21 lines
404 B
Markdown
Raw Normal View History

2019-10-12 15:17:22 +01:00
# hdiutil
> Utility to create and manage disk images.
> More information: <https://ss64.com/osx/hdiutil.html>.
2019-10-12 15:17:22 +01:00
- Mount an image:
2019-11-22 15:03:55 +00:00
`hdiutil attach {{path/to/image_file}}`
2019-10-12 15:17:22 +01:00
- Unmount an image:
`hdiutil detach /Volumes/{{volume_file}}`
2019-10-12 15:17:22 +01:00
- List mounted images:
`hdiutil info`
- Create an ISO image from the contents of a directory:
2019-11-22 15:03:55 +00:00
`hdiutil makehybrid -o {{path/to/output_file}} {{path/to/directory}}`