Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| wiki:backup_date [2011/05/24 03:53] – [Backup with Date and Time] Guy | wiki:backup_date [2011/05/26 16:50] (current) – [Backup with Date and Time] Guy | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Backup with Date and Time ====== | ====== Backup with Date and Time ====== | ||
| - | Following is a guide on how to save backups | + | Following is a guide on how to save a backup or encrypted backup |
| The date and time is in the order year, month, day, then hours, minutes and seconds. This keeps the backup files in order. | The date and time is in the order year, month, day, then hours, minutes and seconds. This keeps the backup files in order. | ||
| Line 7: | Line 7: | ||
| Open a text editor, and paste the following. | Open a text editor, and paste the following. | ||
| - | < | + | < |
| - | #!/bin/sh | + | # This saves a copy of backup or encrypted backup with the date and time. |
| - | PART=sda1 # If not sda1, change this to the correct partition. | + | |
| + | PART=$(cat /opt/.backup_device) | ||
| + | MYDAT=$(cat / | ||
| DATE=$(date +" | DATE=$(date +" | ||
| - | DATABACK=Data-$DATE.tgz | + | DATABACK=$MYDAT-$DATE.tgz |
| - | cd /mnt/$PART/tce/ | + | CRYPTBACK=$MYDAT-$DATE.tgz.bfe |
| - | cp mydata.tgz $DATABACK | + | cd / |
| + | cp $MYDAT.tgz $DATABACK | ||
| + | cp $MYDAT.tgz.bfe $CRYPTBACK | ||
| - | # This deletes the oldest if there are more than 5 (or the number you select). | + | # This deletes the oldest if there are more than the number you select |
| - | NUMBACK=$(ls | + | NUMBACK=$(ls |
| while [ $NUMBACK -gt 5 ] # Change 5 to the number of backups you want to keep. | while [ $NUMBACK -gt 5 ] # Change 5 to the number of backups you want to keep. | ||
| do | do | ||
| - | ls -1t /mnt/$PART/ | + | ls -1t $MYDAT-2*tg* | tail -1 | xargs /bin/rm -f |
| - | NUMBACK=$(ls | + | NUMBACK=$(ls |
| done | done | ||
| </ | </ | ||
| - | If you are not using sda1, change it to the correct partition. | + | Save this file as backdate.sh in /opt. |
| - | + | ||
| - | Save this as backdate.sh in /opt. | + | |
| Open the terminal and type | Open the terminal and type | ||
| Line 37: | Line 39: | ||
| < | < | ||
| - | |||
| - | You need to be using backup. | ||
| ==== Manual Backup ===== | ==== Manual Backup ===== | ||
| Line 56: | Line 56: | ||
| < | < | ||
| - | ==== Access | + | ==== Restore |
| - | Backup files are normally saved in the tce directory, which may be somewhere like / | + | To restore a previous backup, remove mydata.tgz, and rename the backup you want to restore to mydata.tgz. |
| - | To access the contents of a backup, | + | If using encrypted |
| - | < | + | Restart the computer for it to be loaded. |
| - | tar -xvf backup-name</ | + | |
| - | ==== Restore a Previous Backup ==== | ||
| - | |||
| - | To restore a previous backup, remove mydata.tgz, and rename the backup you want to restore mydata.tgz. | ||
| - | |||
| - | Restart the computer for it to be loaded. | ||