Hi @all,
i do every night a backup of the KVM-Systems (1 with debian lenny & 2 systems with debian squeeze) by using this small shell script (with crontab):
The problem is the restore.
I tried to use the tool vzrestore - but he said that the system i wan't to restore is still existing.
The question is now:
Should i delete the system i wan't to restore first (in the proxmox administration menu) and then i am able to restore?
thanx
Sebastian
i do every night a backup of the KVM-Systems (1 with debian lenny & 2 systems with debian squeeze) by using this small shell script (with crontab):
Code:
datum=`date +%Y%m%d-%H%M%S`
mkdir /backup/${datum}
/usr/sbin/vzdump --dumpdir /backup/${datum}/ --stop --compress 101
/usr/sbin/vzdump --dumpdir /backup/${datum}/ --stop --compress 102
/usr/sbin/vzdump --dumpdir /backup/${datum}/ --stop --compress 103
The problem is the restore.
I tried to use the tool vzrestore - but he said that the system i wan't to restore is still existing.
The question is now:
Should i delete the system i wan't to restore first (in the proxmox administration menu) and then i am able to restore?
thanx
Sebastian