You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
776 B
18 lines
776 B
5 years ago
|
# Restore
|
||
|
|
||
|
```bash
|
||
3 years ago
|
autorestic restore [-l, --location] [--from backend] [--to <out dir>] [-f, --force] [snapshot]
|
||
5 years ago
|
```
|
||
|
|
||
3 years ago
|
This will restore the location to the selected target. If for one location there are more than one backends specified autorestic will take the first one. If no specific snapshot is specified `autorestic` will use `latest`.
|
||
5 years ago
|
|
||
3 years ago
|
If you are sure you can pass the `-f, --force` flag and the data will be overwritten in the destination. However note that this will overwrite all the data existent in the backup, not only the 1 file that is missing e.g.
|
||
4 years ago
|
|
||
5 years ago
|
## Example
|
||
|
|
||
|
```bash
|
||
|
autorestic restore -l home --from hdd --to /path/where/to/restore
|
||
|
```
|
||
|
|
||
|
This will restore the location `home` to the `/path/where/to/restore` folder and taking the data from the backend `hdd`
|