Delta ISOs
From FedoraProject
A delta ISO is a file that contains the differences between two ISO files, and can be used to convert one into the other. It makes use of delta RPMs between RPM files in the old and new ISOs, and so is only useful if these ISOs mainly consist of RPM files (as is the case for Fedora install images, but not live images).
Contents |
System Requirements
Fedora
- Fedora 11 or later: RPM packages in Fedora 12 and later use xz compression (RPMs in older versions use gzip compression). In order to either create or use delta ISOs between ISOs containing xz-compressed RPMs, Fedora 11 or later is required. (Fedora 10 or below does not work because there is not a
deltarpmpackage with xz support.) - In Fedora 11, the
deltarpmpackage must be installed, and it should be the updated version (deltarpm-3.5-0.4.20090913git.fc11.1), not thedeltarpm-3.4-16.fc11release version that does not contain xz support. - In Fedora 12 or later, the
deltaisopackage must be installed. (In Fedora 11, delta ISO support is contained in thedeltarpmpackage, and there is no separatedeltaisopackage.)
RHEL/CentOS
- RHEL/CentOS 4 or later. In RHEL/CentOS 4 and 5, the EPEL repository must be enabled.
- In RHEL/CentOS 4, the
deltarpmpackage must be installed. Note that the available version (deltarpm-3.4) does not include xz support which is required for working with delta ISOs between recent versions of Fedora (12 or later). - In RHEL/CentOS 5 or later, the
deltaisopackage must be installed. (In RHEL/CentOS 4,deltaisosupport is contained in thedeltarpmpackage, and there is no separatedeltaisopackage.)
Using Delta ISOs
The applydeltaiso command is used. The syntax is:
applydeltaiso oldiso deltaiso newiso
If oldiso is on a mounted CD/DVD disc, the following also works, but runs more slowly due to the optical drive's greater access time:
applydeltaiso /dev/dvd deltaiso newiso
Creating Delta ISOs
The makedeltaiso command is used. The syntax is
makedeltaiso oldiso newiso deltaiso
Here, unlike the applydeltaiso command, oldiso should always refer to an ISO file, never a CD/DVD disc (RHBZ #569499).
If the delta ISO is intended for a large audience, then run and time the applydeltaiso command and verify that newiso is correctly generated. There are two reasons for this.
- Telling users the estimated run time for
applydeltaisolets them determine whether the download time saved by using a delta ISO is likely to be greater than the time required to runapplydeltaiso. - Around the time of
xzcompression changes, certain delta ISOs may be nonfunctional as a result of not all RPMs innewisousing the same compression. Hence the delta ISO should be checked. Whenapplydeltaisofinishes running, there should be a message similar to this:
iso successfully re-created, md5sum: f90d7a6d19a2cc5428a95892d5e2ca84
The md5sum is that of newiso, which is stored in the delta ISO for later verification. On the other hand, a failed reconstruction shows this message:
md5sum mismatch, iso is corrupt
and in this case the delta ISO should not be used.