2018-10-21 21:44:14 +01:00
|
|
|
# asr
|
|
|
|
|
|
|
|
> Restore (copy) a disk image onto a volume.
|
|
|
|
> The command name stands for Apple Software Restore.
|
2024-01-31 10:20:27 +00:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/asr.8.html>.
|
2018-10-21 21:44:14 +01:00
|
|
|
|
|
|
|
- Restore a disk image to a target volume:
|
|
|
|
|
2023-02-20 06:50:10 +00:00
|
|
|
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}}`
|
2018-10-21 21:44:14 +01:00
|
|
|
|
|
|
|
- Erase the target volume before restoring:
|
|
|
|
|
2023-02-20 06:50:10 +00:00
|
|
|
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --erase`
|
2018-10-21 21:44:14 +01:00
|
|
|
|
|
|
|
- Skip verification after restoring:
|
|
|
|
|
2023-02-20 06:50:10 +00:00
|
|
|
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --noverify`
|
2018-10-21 21:44:14 +01:00
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
- Clone volumes without using an intermediate disk image:
|
2018-10-21 21:44:14 +01:00
|
|
|
|
2023-02-20 06:50:10 +00:00
|
|
|
`sudo asr restore --source {{path/to/volume_file}} --target {{path/to/volume_file}}`
|