Backup files cleanup


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Backup files cleanup
# 8  
Old 09-21-2016
In an earlier OS, using a backup package to create the file I used cron to step it through the directory queue:
backup file created at 3:01 AM
at 4:01 I cleared the backup4 directory
at 4:15 I moved backup3 contents to backup4
at 5:15 I moved backup2 contents to backup3
at 6:15 I moved backup1 contents to backup2
at 7:15 I moved the current backup to backup1

for the weekly it would have been a matter of copying the Sunday backup to a similar queue.

It helped that I put the entire backup system on it's own file system on it's own hard drive and that the daily backup was burned to CD first. Over 15 years and as many as 6 machines I only have had 1 issue where this failed me and I had to reconstruct from CD.
# 9  
Old 09-21-2016
I was able to get my client to agree to have a seperate folder for the weekly backups.

Changed crontab to copy every sunday both in daily and a weekly.

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

How to backup a directory (sub-directories/files) files from one server on to other ?

Hello, Server A: /directory1/ Server B: /Backups/ i wanted to backup contents of /directory1 from "server A" on to "Server B" every 1 hour. If there is any change in (only new/differences) contents on serverA (directory1/) supposed to be backeup on next run. I did used rsync command to... (5 Replies)
Discussion started by: System Admin 77
5 Replies

2. Solaris

Cleanup special files create via device match in a whole root zone

I added in the configuration file of a whole root zone the following device match entries: <device match="/dev/rmt/*"/> <device match="/dev/sg/*"/> after the reboot the zone was able to see all the devices of its global zone, and let under /dev/rmt and /dev/sg the special files created with... (1 Reply)
Discussion started by: hugo_perez
1 Replies

3. Shell Programming and Scripting

Backup Files

Hi, Using the shell script, how can I backup the files. /etc/password, /etc/group , /etc/shadow and more and needs a backup like /etc/password.12Mar12.... (4 Replies)
Discussion started by: gsiva
4 Replies

4. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

5. UNIX for Dummies Questions & Answers

Help needed to backup files.

Hi guys , I m writing a script which will backup a particular folder and its content to a different location. this script needs to be run every weekend. But my problem is how would i apply logic such that the previous backup folder is only deleted if and only if the current backup is... (1 Reply)
Discussion started by: pinga123
1 Replies

6. Solaris

Help with solaris files backup

Hello, I'm Antony, new solaris user. I need to back-up an old solaris disk. Currently I have installed the Open Solaris operating system on my computer and a USB device I tried to read data on a hard drive with an older version of Solaris, when i try to open the device the operating system tells... (11 Replies)
Discussion started by: legoinario_67
11 Replies

7. Shell Programming and Scripting

Backup files

Greetings. I've got a little bit of problem with writing a script. I'd like to write a script that creates backup files (of your computer) once a week, and on the other days of the week it just updates it. Thanks in advance i hope you can help: buddhist p.s.: this would help a lot, because... (1 Reply)
Discussion started by: buddhist
1 Replies

8. UNIX for Dummies Questions & Answers

Cleanup job to remove old files suddenly not working

Hi I have a job that has been running for a while with the following statement to cleanup a directory: find /dbmgtu01/app/myplace/log ! \( -name "dc*" -o -name "sc*" -o -name "ms*" \) -type f -mtime +30 -print -exec rm {} \ ; The directory was recently changed to a mount point, with a symbolic... (2 Replies)
Discussion started by: CAGIRL
2 Replies

9. Shell Programming and Scripting

remove old backup files

# find /home/shantanu -name 'my_stops*' | xargs ls -lt | head -2 The command mentioned above will list the latest 2 files having my_stops in it's name. I want to keep these 2 files. But I want to delete all other files starting with "my_stops" from the current directory. (3 Replies)
Discussion started by: shantanuo
3 Replies

10. Shell Programming and Scripting

SUM of Backup Files

Hello Everyone, I'm struggiling with backup issues and need to sum up sizes of backup files monthly and add the result to the next month's sum recursively. For this i have a well working script that i modified as i showed below and this part gives the sum of the file sizes under working... (2 Replies)
Discussion started by: EAGL€
2 Replies
Login or Register to Ask a Question