Deleted files and incremental backup
I'm a photographer. I have two 1TB data drives (D & E) that hold current job files and I am backing up both of those drives to another 1.5TB (F)drive using Acronis True Image Home. At any one time there is less than 1.5 TB of data on the two data drives. When I am finished with a job I move it to another "Finished Jobs" (G)drive.
My question is this - will I eventually run out of room on drive F because it stores all those files that have since been deleleted from the two source data drives (D & E), or when I delete a folder from the source drives ( D or E) , will Acronis delete that folder from drive F?
I want drive F to hold a backup of what is currently on the data drives. For those data folders that are deleted from the source drives i want the backup to reflect that. Otherwise I will run out of room on the backup drive F and need to delete all the backups and start over again.

- Log in to post comments

Thanks for explaining. I actually think I want both. I want to keep both kinds of backups on critical data. I just looked at Karen's Replicator and it does want I want. But I also like Acronis.
What is normally done with an incremental backup when the target disk is full? Just delete the backups and start from scratch? ?r switch to another target disk for a period of time and then delete the data from the original target disk, swithing from disk to disk over a period of time?
- Log in to post comments

what you do is up to your tolerance for risk and the amount of freespace disk on other disks you have.
since you can get a 1 Terabyte drive with a 5 yr warranty for about $150 one finds that disk space often is not a insurmountable issue.
but eventually you need some kind of backup rotation scheme
for my critical data to me I run two lines of backups full/incr on split schedules.
EX:
line_a does a full on the 1st_sun of the month then daily incr
line_b does a full on the 3rd_sun of the month then daily incr
Line_a and line_b are on different target devices such as one being a external usb drive and the other being a network drive.
TI home will not run two jobs at the same instant but will queue them so then run seqentially.
I schedule one 2:01 am and the other a minute later 2:02am they run one after the other.
Ideally my target devices are big enough to store 1 generation of history.
(current full+30 days of incr plus last months full and its 30 days of incr)
I have mine send email when the full backup occurs and if any incr fails.
So day in day out the sun comes up the sun goes down and oh yeah, backups occur.
Usually incr backups finish in mear minutes a full however takes hours.
this is why I schedule fulls to occur on 2am sunday with each line doing its full on a different sunday.
The advantage of two lines is the risk of both lines failing on the same day is the square of risk for one drive failing. Ex. if you accept the figure that on any given day a hard drive has a 1 in 1000 chance of failing then then chance of two independant drives both failing on the same day is 1/1000 * 1/1000 = 1 in a million.
by having two lines each with 1 generation of history you are guaranteed with 999999/1000000 certainty that you can recover any file as it looked in the last 30 days and with 999/1000 certainty any file as it looked in the last 45.
The above is just one example of a backup rotation everyone has their own preference.
you probably will find chain2gen (below) exactly what you need to accomplish these backup rotations (generations) for TI_HOME.
- Log in to post comments

Thanks for your very detailed answers and help!
What I decided to do was this:
I'll use Karen's at the end of each day to produce an identical copy of my "current Jobs" folder on an external eSATA drive. This gives me two copies of all of my critical files, it deletes, updates with new files, etc. Drive capacity is 2TB for both the souce and backup drive so I'm not going to run out of space as I manage what's in my 'current jobs' folder.
I'll use Acronis to do a full backup on another 2 TB drive followed by inci backups a few times a week. When the disk gets close to full I'll do a full backup to another 2TB drive. When that gets full I'll reformat the first drive and start the process again there.
Altogether this will give me 3 disks with all of my essential files - and with minimal work.
Prior to this I have been dragging and dropping folders with 40GB of data, a folder at a time. Acronis and Karen Rep will be huge time savers for me.
- Log in to post comments

great ideas.
I would schedule both actions to occur automatically at night/off hours.
if something occurs automatcially it will get done, if I need to manually remember then I might forget.
I would probably write a script and schedule to run daily
that would monitor the freespace on the target drive and
send email or throw a popup dialog box up when it gets low.
that way you do "nothing" until one day you walk in and your computer says time switch backup devices as this one is low...
something along the lines of
freecheck.vbs
----------------------
Dim WshShell, BtnCode, ArgObj, p1, p2, p3, p4, p5,cmsg
Set WshShell = WScript.CreateObject("WScript.Shell")
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colDisks = objWMIService.ExecQuery _
("Select * from Win32_LogicalDisk Where DeviceID = 'Z:'")
for Each objDisk in colDisks
min_gigfree = 100
actual_free = round(objDisk.FreeSpace/(1024*1024*1024),1)
diff = actual_free - min_gigfree
if diff < 0 then
BtnCode = WshShell.Popup("Time to swap backup drives freespace in gig is "&vbCrLf&actual_free, 0, "Alert", 64)
end if
Next
- Log in to post comments