The author mentions that removed files stick around on disk after being removed, and that this can increase the size of a compressed bit-for-bit copy.<p>They then suggest you can mitigate this by writing zeros to a file before rm'ing it. However, this is slow in the general case, and doesn't help if you've already rm'd the file.<p>As an alternative, the 'sfree' utility, available in the debian package 'secure-delete', can be used to fill the unallocated portions of a disk with zeroes (or random data).<p>sfree -llz <disk device><p>will write zeroes to the free areas of a disk. -ll limits it to only one pass over the disk, and -z makes that pass write zeroes, instead of random data.<p>man page: <a href="http://manpages.ubuntu.com/manpages/lucid/man1/sfill.1.html" rel="nofollow">http://manpages.ubuntu.com/manpages/lucid/man1/sfill.1.html</a>