In my backup program should I click compress contents to save disk space?
And encrypt contents to secure data? Why wouldn’t I always want to do both?
Compression is in general an easy choice these days – turn it on unless you
run into issues I’ll talk about in a moment.
Encryption requires a little more thought. It boils down to a risk/risk
tradeoff – the risk of your backup being compromised, versus the risk of not
being able to get back into it yourself.
]]>
<
Hi Leo, are you saying that the compression scheme used by Windows is a lossy type of compression?
That would mean data loss wouldn’t it?
I know MP3’s and JPEG’s are lossy compression schemes but I wouldn’t think data would be compressed using any kind of a lossy method.
I would instead expect data compression to be lossless.
I use a Linux based program to create backup images of my OS installations and the program offers varying levels of compression.
The medium setting reduces image size by more than a third while retaining all the data.
If it didn’t, restores would be impossible.
23-Dec-2009
@Frank,
Lossy compression is used to compress image and video files, as much of the data is not needed at all. For example, if you have a video at 60 frames per second, then it can be compressed down to 24 frames per second as the human brain can’t tell the difference between 60 and 24 fps. This is lossy compression as data is deleted.
The compression used on backups is lossless. It checks blocks of data and if it sees a recuring pattern it replaces it with a single instance of that pattern. For example, in a text document, the word “the” may appear 20 times. The backup program takes the word “the” and in place of the other 19 “the”s it will leave a symbol or reference for it so that 60 characters (3×20) can be compressed to 6 for example. When the document is uncompressed, it converts the symbol’s into the word “the”.