I have a 100GB large backup file, which i compress with bzip2. But bzip2 for some reason keeps the original file.
If i try it, it deletes the original file as it should:
# touch file
# ls file*
file
# bzip2 -z file
# ls file*
file.bz2
But when i do the same from backup cron script in the night, it keeps both original and compressed file. Does anybody know why? Is it possible, that it could be because of the filesize?
Thanks for your advice!