1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 11:42:08 +02:00
tldr/pages/osx/asr.md
2018-10-21 21:44:14 +01:00

20 lines
627 B
Markdown

# asr
> Restore (copy) a disk image onto a volume.
> The command name stands for Apple Software Restore.
- Restore a disk image to a target volume:
`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}}`
- Erase the target volume before restoring:
`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}} --erase`
- Skip verification after restoring:
`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}} --noverify`
- Clone volumes without the use of an intermediate disk image:
`sudo asr restore --source {{path/to/volume}} --target {{path/to/cloned_volume}}`