Code: Alles auswählen
dists/testing/non-US/Contents-i386.gz failed md5sum check
Failed to download some Package, Sources, Contents or release files!
releasing 1 pending lock... at /usr/lib/perl5/LockFile/Simple.pm line 182.
Mirroring to /home/user/debmirror/debian-security from rsync://anonymous:security.debian.org/:debian-security//
Arches: i386
Dists: stable/updates
Sections: main,contrib,non-free
Passive mode on.
Download at most 200 files per rsync call.
Attempting to get lock, this might take 2 minutes before it fails.
Get Release files.
remote_get rsync dists/stable/updates/Release
receiving file list ...
5 files to consider
dists/stable/updates/Release
18456 100% 17.60MB/s 0:00:00 (1, 100.0% of 5)
sent 390 bytes received 287 bytes 1354.00 bytes/sec
total size is 18456 speedup is 27.26
remote_get rsync dists/stable/updates/Release.gpg
receiving file list ...
5 files to consider
dists/stable/updates/Release.gpg
315 100% 307.62kB/s 0:00:00 (1, 100.0% of 5)
sent 238 bytes received 187 bytes 850.00 bytes/sec
total size is 315 speedup is 0.74
gpg: Signature made Tue Jan 18 10:37:48 2005 CET using RSA key ID 1DB114E0
gpg: Can't check signature: public key not found
Release signature does not verify
Get Packages and Sources files and other miscellany.
remote_get rsync dists/stable/updates/Contents-i386.gz
receiving file list ...
4 files to consider
sent 221 bytes received 124 bytes 138.00 bytes/sec
total size is 0 speedup is 0.00
dists/stable/updates/Contents-i386.gz failed md5sum check
Failed to download some Package, Sources, Contents or release files!
releasing 1 pending lock... at /usr/lib/perl5/LockFile/Simple.pm line 182.
Hier mein mirror script, ist hier aus dem forum...
Code: Alles auswählen
#!/bin/sh
## anfang konfiguration
#
# gibt das lokale spiegelverzeichnis an
DEB_MIRROR=/home/michel/debmirror/debian
DEB_MIRROR_NONUS=/home/michel/debmirror/debian-non-US
DEB_MIRROR_SEC=/home/michel/debmirror/debian-security
# server von dem gespiegelt werden soll
DEB_HOST=ftp.uni-koeln.de
DEB_HOST_NONUS=ftp.uni-koeln.de
DEB_HOST_SEC=security.debian.org
#root verzeichnis des server von dem gespiegelt wird
DEB_ROOT=:debian/
DEB_ROOT_NONUS=:debian-non-US/
DEB_ROOT_SEC=:debian-security/
# distribution (woody, sarge, sid ...)
DEB_DIST=testing
DEB_DIST_NONUS=testing/non-US
DEB_DIST_SEC=stable/updates
# section von debian die gespiegelt wird
DEB_SECT=main,contrib,non-free
DEB_SECT_NONUS=main,contrib,non-free
DEB_SECT_SEC=main,contrib,non-free
# architektur
DEB_ARCH=i386
# zusätzliche optionen (man debmirror)
# --debug --progress --verbose
DEB_OPT="--method=rsync --passive --nosource --cleanup --getcontents --progress"
# anzeigen der messages
MESG=off
#
## ende konfiguration
if [ $MESG == on ]
then
echo ""
echo "--- `/bin/date` --- updating debmirror ..."
echo ""
fi
# Hauptmirror
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` updating debian ..."
fi
debmirror $DEB_MIRROR --host=$DEB_HOST --arch=$DEB_ARCH --dist=$DEB_DIST --root=$DEB_ROOT --section=$DEB_SECT $DEB_OPT
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` finished updating debian"
echo ""
fi
# non-US
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` updating debian-non-US ..."
fi
debmirror $DEB_MIRROR_NONUS --host=$DEB_HOST --arch=$DEB_ARCH --dist=$DEB_DIST_NONUS --root=$DEB_ROOT_NONUS --section=$DEB_SECT_NONUS $DEB_OPT
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` finished updating debian-non-US"
echo ""
fi
# secruity
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` updating debian-security ..."
fi
debmirror $DEB_MIRROR_SEC --host=$DEB_HOST_SEC --arch=$DEB_ARCH --dist=$DEB_DIST_SEC --root=$DEB_ROOT_SEC --section=$DEB_SECT_SEC $DEB_OPT
if [ $MESG == on ]
then
echo "`/bin/date |awk {print'$4'}` finished updating debian-security"
echo ""
fi
# proposed
#debmirror $DEB_MIRROR_PROPOSED --host=$DEB_HOST --arch=$DEB_ARCH --dist=testing-proposed-updates --root=$DEB_ROOT $DEB_OPT
if [ $MESG == on ]
then
echo "--- `/bin/date` --- updating debmirror complete"
echo ""
fi
Ich weiß nicht mehr weiter, danke