View previous topic :: View next topic |
Author |
Message |
McPringle Apprentice
Joined: 19 Feb 2003 Posts: 164 Location: Aarau (Switzerland)
|
Posted: Tue May 13, 2003 3:07 pm Post subject: Fehler beim rsync der distfiles: @ERROR: chroot failed |
|
|
Hallo,
für ein lokales Netz, in dem jeder sein eigenes Gentoo installiert und das Interesse an Gentoo laufend wächst, habe ich einen Mirror aufgesetzt. Erst portage, dann habe ich auch die distfiles gemirrort (langsame externe Anbindung, überlastet - gleicht sich nachts ab und ist da auch nicht mehr so ausgelastet).
Obwohl der portage rsync noch funktioniert, bricht der distfiles rsync mit einer Fehlermeldung ab. Folgendes steht im Logfile:
Code: | Started update at Tue May 13 16:54:22 CEST 2003
@ERROR: chroot failed
rsync: connection unexpectedly closed (823 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(165)
End: Tue May 13 16:54:22 CEST 2003 |
Das Skript hat einige Wochen reibungslos funktioniert. Hier ist es:
Code: | #!/bin/bash
RSYNC="/usr/bin/rsync"
OPTS="--quiet --recursive --links --perms --times --devices --compress --delete --timeout=600"
SRC="rsync://ftp.ibiblio.org/Linux/distributions/gentoo/distfiles"
DST="/usr/portage"
echo "Started update at" `date` >> $0.log 2>&1
logger -t rsync "re-rsyncing the gentoo-distfiles tree"
${RSYNC} ${OPTS} ${SRC} ${DST} >> $0.log 2>&1
echo "End: "`date` >> $0.log 2>&1 |
Ich verstehe die Fehlermeldung nicht - warum steht da was von chroot? Hat jemand eine Idee?
Danke
McPringle[/code] |
|
Back to top |
|
|
Mr.Big Guru
Joined: 10 Apr 2002 Posts: 424 Location: Königswartha / Germany
|
Posted: Tue May 13, 2003 3:26 pm Post subject: |
|
|
Vieleicht liegt es einfach nur daran das ibiblio.org momentan nicht erreichbar zu sein scheint.
J. |
|
Back to top |
|
|
McPringle Apprentice
Joined: 19 Feb 2003 Posts: 164 Location: Aarau (Switzerland)
|
Posted: Tue May 13, 2003 3:32 pm Post subject: |
|
|
Mr.Big wrote: | Vieleicht liegt es einfach nur daran das ibiblio.org momentan nicht erreichbar zu sein scheint. |
Ups - die Lösung kann so einfach sein... |
|
Back to top |
|
|
|