Digup – A console tool to update md5sum or shasum digest files
Sponsored Link
One of the envisioned applications of digup is to update and verify incremental archives like chronological data storages or music collections. By using digup possibly undesired changes or lost files can easily be detected while quickly adding new files.
Another purpose could be to automatically verify the integrity of hard disk copies of archives, as backups to hard disks are becoming increasingly popular. Using a full file digest scan even slowly creeping bad blocks on old hard disks can be detected. By using a crontab entry, this check can be performed unattended and routinely.
In normal operation only touched files with newer modification times are fully read and their digest compared. Optionally a full scan can be performed to test all file contents against their expected digests.
Symbolic links are supported by either following the link and reading the target’s digest or by saving only the link target path and verifying it against the old one.
The digest files written by digup are compatible with those generated and read by md5sum and similar programs from the coreutils package. Additional information like file size and modification time or symlink targets are stored on comment lines.
Four digest algorithms are supported: MD5, SHA1, SHA256 and SHA512. The digest file itself is also checksummed using CRC32 against unintentional changes. A fast red-black binary tree is used for the internal file list, allowing fast operation on a large number of files.
Install digup in ubuntu 10.04
Open the terminal and run the following commands
wget -O- https://idlebox.net/repo/key.asc | apt-key add --
or with sudo:
wget -O- https://idlebox.net/repo/key.asc | sudo apt-key add --
Add binary repository line to /etc/apt/sources.list
sudo gedit /etc/apt/sources.list
add the following line
deb http://idlebox.net/repo/ubuntu lucid main
Save and exit the file
Update package listings and install the package digup:
sudo apt-get update
sudo apt-get install digup
Screenshot