I have several virtualized instances of XP and W7 on KVM, and each week I take an LVM snapshot of the qcow2 file and rsync it to a remote site. I'd like to reduce my bandwidth usage if possible - what can I change on those machines to minimise unnecessary changes in the qcow2 file?
Should I:
- reduce the cache size for the browser?
- turn off the pagefile?
or do you have any other suggestions?
qcow2is a copy-on-write filesystem. Writing to the pagefile for example will allocate new blocks, but release the old ones that can then be re-used. – Jack Douglas Jan 16 at 9:24