Restoring Files from Incremental Backup
Incremental backups created with Veeam Agent for Oracle Solaris 1.0 are saved to backup files in the .tar.gz format. To restore a file from a backup of this type, you must locate the necessary backed-up file in the .tar.gz archive and extract this file from the underlying .tar archive.
|
Consider the following:
|
To restore a file from an incremental backup created with Veeam Agent for Oracle Solaris 1.0:
- To restore a file from an incremental backup, you must specify a path to the restored file. To obtain a path to the restored file, use the following command:
where:
- <machine.tar.gz> — name of the backup file that contains the file you want to restore. For example, machine.tar.gz, machine.tar.gz.0, machine.tar.gz.1 and so on.
Note that incremental backup files contain only those files that have changed since the previous backup session. If you cannot obtain a path to the file you want to restore from the backup file, try to obtain the path from another file in the incremental backup chain.
- <filename> — name of the file you want to restore.
For example:
# gunzip -cd /mnt/backup/incremental/machine.tar.gz.0 | tar tvf - | grep company |
- Extract the necessary file from the backup. To do this, use the following command:
where:
- <machine.tar.gz> — name of the backup file that contains the file you want to restore. For example, machine.tar.gz, machine.tar.gz.0, machine.tar.gz.1 and so on.
Make sure that you restore a file from the necessary backup file. That is, to restore a file to a specific state, restore it from the backup file created at the time when the file was in the desired state.
- <path/to/file.ext> — path to the file you want to restore obtained at the step 1.
For example:
# gunzip -cd /mnt/backup/incremental/machine.tar.gz.0 | tar xvf - 13473742344/./export/home/user01/reports/2018/abc-company.pdf |
Veeam Agent for Oracle Solaris will restore a file with the specified path to the current working directory. You can then copy the restored file to its original location on the Veeam Agent for Oracle Solaris machine or to a new location.