Hello, to make VM backups smaller, someone uses this command inside VM / Linux:
dd if = / dev / zero of = zero.small.file bs = 1024 count = 102400
dd if = / dev / zero of = zero.file bs = 1024
sync; sleep 60; sync
rm zero.small.file
rm zero.file
I want to know if there is anything better to do to decrease backups of VMs that are on Linux.
dd if = / dev / zero of = zero.small.file bs = 1024 count = 102400
dd if = / dev / zero of = zero.file bs = 1024
sync; sleep 60; sync
rm zero.small.file
rm zero.file
I want to know if there is anything better to do to decrease backups of VMs that are on Linux.