# What is dvdisaster? **dvdisaster** provides additional [ECC](https://en.m.wikipedia.org/wiki/Error_correction_code) protection for optical media. If a medium gets damaged, dvdisaster can recover it as long as the amount of damage is smaller than the amount of ECC data you added to protect it. It can loosely be compared to [.par2](https://en.m.wikipedia.org/wiki/Parchive) files, but the protection works at the *iso* level instead of working at the file level. This way, even if metadata from the optical medium filesystem is damaged, dvdisaster can still work flawlessly. Please refer to the [PDF manual](documentation/user-manual/manual.pdf) for more information. # Unofficial version The last upstream version by Carsten Gnörlich is dated 2017, and could be found on the [official](https://web.archive.org/web/20180428070843/http://dvdisaster.net/en/index.html) [website](https://web.archive.org/web/20180509154525/http://dvdisaster.org/en/index.html) which is [now](http://www.dvdisaster.net) [down](http://www.dvdisaster.org). The original source code [repository](https://sourceforge.net/projects/dvdisaster/files/dvdisaster) doesn't have it, but [Debian sources](https://sources.debian.org/src/dvdisaster/) does, thanks to the maintainer there. The original [README](README) has been left untouched in this repository. This version is built on top of the latest upstream version, with the following notable enhancements: - Most Debian patches have been applied, those specific to Debian have been omitted - Windows build supported again, it was dropped upstream a few versions back - A CLI-only version, not depending on gtk (`./configure --with-cli-only && make clean && make -j4`) - Regression tests confirmed working on Linux64, Windows32 and Windows64, for normal and CLI-only builds - Added pre-defined sizes for BD-R Triple Layer (100GB), BD-R Quadruple Layer (128GB) For more information please refer to the [CHANGELOG](CHANGELOG). This version will never break compatibility with upstream versions, the goal is to ensure an optical media protected by upstream dvdisaster will still be able to be repaired with this version 10+ years from now. Regression tests are here to ensure this is the case. ## 3 available protection modes ("codecs") **RS01** creates error correction files which are stored separately from the image they belong to. The artefact is an **ecc** file, which must be stored on another media than the one we're protecting. **RS02** creates error correction data which is added to the medium to protect, we call this *augmenting* the image we're protecting. Damaged sectors in the error correction information reduce the data recovering capacity, but do not make recovery impossible - a second medium for keeping or protecting the error correction information is not required. **RS03** is a further development of RS01 and RS02. It can create both error correction files and augmented images, with the following added features: - RS03 can use multiple CPU cores and is therefore much faster than RS01/RS02 on modern hardware. - RS03 error correction files are - contrary to RS01, and to a lesser extent RS02 - robust against damage. - RS03 is more robust, but also more restrictive: The augmented image must completely fill the medium now while the size of augmented images can be freely chosen in RS02. The changes for parallel computation and higher robustness make RS03 a bit less space efficient, e.g. RS03 error correction data has slighly less error correction capacity than its RS01/RS02 counterparts on images with equal size. # Rationale Even if the optical media era is sunsetting now, and has been for a few years, it's still of some value for off-site backups. In any case, we still have media in our hands that we want to be able to repair, should it be damaged, during the next years/decades. Repairing is actually pretty much the very reason of dvdisaster existence (as long as parity data has been added, of course). The idea of this unofficial version is to ensure dvdisaster doesn't get hard to find, use or compile, should upstream development never resume (we hope it does!). This is also why precompiled Windows binaries and a precompiled static CLI-only Linux version are available here. # Compiling See the [INSTALL](INSTALL) file. The [workflow file](.github/workflows/release.yml) that is used to automatically build binaries for each release can also help. # Screenshots ### Scanning a damaged CD under Windows ![dvdisaster_damaged_cd](https://user-images.githubusercontent.com/218502/91434313-edaaf880-e864-11ea-8e41-7b58a1e97a70.PNG) ### Scanning a healthy BD-R (single layer) with Linux GUI ![dvdisaster_bdr_read](https://user-images.githubusercontent.com/218502/91436728-fbfb1380-e868-11ea-8444-04ebc60809d8.PNG) ### Creating an RS03 error correction file with Linux GUI ![dvdisaster_bdr_create](https://user-images.githubusercontent.com/218502/91436740-00273100-e869-11ea-837a-af0d0733fe87.PNG) ### Verifying a BD-R image with Linux GUI ![dvdisaster_bdr_verify](https://user-images.githubusercontent.com/218502/91436731-fc93aa00-e868-11ea-93e6-b8c277620df7.PNG)