1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 13:04:56 +02:00
tldr/pages/osx/hdiutil.md
2019-10-12 15:17:22 +01:00

19 lines
315 B
Markdown

# hdiutil
> Utility to create and manage disk images.
- Mount an image:
`hdiutil attach {{filename}}`
- Unmount an image:
`hdiutil detach /Volumes/{{volumename}}`
- List mounted images:
`hdiutil info`
- Create an ISO image from the contents of a directory:
`hdiutil makehybrid -o {{filename}} {{dirname}}`