Home » Questions » Computers [ Ask a new question ]

Best format for backing up data in Blu Ray

Best format for backing up data in Blu Ray

We are in the process of backing up our hard drives to Blu Rays. I am creating tar.gz files and burning them to Blu Ray.

Asked by: Guest | Views: 374
Total answers/comments: 1
Guest [Entry]

"Tar really is the best format for archives. Every system you want to recover on will have it.

I use the tarfile Python module to make my tar.gz files and an index file with hashes. I have my program create a new tarball when the current one reaches a certain size. You could then run mkisofs and cdrecord with popen to create the ISOs and write them to disk.

I use tarsum.py to verify the hashes during recovery."