Re: Checking md5sums

2000-09-18 Thread Ethan Benson
On Mon, Sep 18, 2000 at 08:18:39AM -0300, Mario Olimpio de Menezes wrote: > On Sun, 17 Sep 2000, Michael S. Fischer wrote: > > > Can someone please tell me how to use the Debian packaging tools to > > scan a system for changed files based on the md5sums contained in the > > .debs? > > I've used a

Re: Checking md5sums

2000-09-18 Thread Mario Olimpio de Menezes
On Sun, 17 Sep 2000, Michael S. Fischer wrote: > Can someone please tell me how to use the Debian packaging tools to > scan a system for changed files based on the md5sums contained in the > .debs? I've used a simple for bash, like this: for F in `ls /var/lib/dpkg/info/*md5sums`; do md5sum -c $F

Re: Checking MD5sums

1999-12-02 Thread ktb
Richard Drisko wrote: Check out "man md5sum" Do a "locate sum|less" and you'll find all files containing "sum". hth, kent > > Hi, > > Awhile ago I remember seeing something to verify the MD5 sums of binaries in > installed packages. I don't remember if it was a script or a package or > what

Re: Checking MD5sums

1999-12-02 Thread ktb
I did a, ~$ apropos md5sums debsums (1) - Check the md5sums of a package debsums_gen (8) - Generate /var/lib/dpkg/info/*.md5sums for packages lacking it dh_md5sums (1) - generate DEBIAN/md5sums file Looks like there is one that checks .debs it's in the debsums package. I'm su