Paketmirror aufsetzen

notes linux

Das Ziel ist es, eigenen Paketmirror für Debian basierte Systeme aufsetzen (z.B: Ubuntu, raspbian). Zunächst müssen die benötigten Pakete installiert werden: apt-get install apache2 debmirror gnupg xz-utils. Eine Beispielkonfiguration für debmirror findet sich unter /usr/share/doc/debmirror/examples/debmirror.conf.

Wir benötigen als nächstes einen Ort mit ausreichend viel Speicherplatz für den mirror:

mkdir /mirror/raspbian
mkdir /mirror/raspbian/mirrorkeyring

Als nächstes den GPG-Key für den Mirror hinterlegen: gpg --no-default-keyring --keyring mirrorkeyring/trustedkeys.gpg --import /usr/share/keyrings/raspbian-archive-keyring.gpg und eine angepasste Konfiguartion für debmirror erstellen (hier: rpimirror.conf):

# Location of the local mirror (use with care)
$mirrordir="/mirror/raspbian/";

# Output options
$verbose=0;
$progress=1;
$debug=0;

# Download options
$host="raspbian.raspberrypi.org";
$remoteroot="raspbian";
$download_method="http";
@dists="bookworm";
@sections="main,contrib,non-free,rpi,firmware";
@arches="armhf";
$omit_suite_symlinks=0;
$skippackages=0;
# @rsync_extra="doc,tools";
$i18n=1;
$getcontents=0;
$do_source=1;
$max_batch=0;

# Also copy install media
#@di_dists="dists";
#@di_archs="arches";

# Save mirror state between runs; value sets validity of cache in days
$state_cache_days=1;

# Security/Sanity options
$ignore_release_gpg=0;
$ignore_release=0;
$check_md5sums=0;
$ignore_small_errors=0;

# Cleanup
$cleanup=0;
$post_cleanup=1;

# Locking options
$timeout=300;

# Rsync options
$rsync_batch=200;
$rsync_options="-aIL --partial";

# Dry run
$dry_run=0;

# Don't keep diff files but use them
$diff_mode="use";

# The config file must return true or perl complains.
# Always copy this.
1;

Als nächstes kann dann der Aufruf gestartet werden, idealerweise auch direkt in einem screen starten, da es länger dauern kann: screen debmirror --keyring /mirror/raspbian/mirrorkeyring --config-file=./rpimirror.conf

Vorheriger Beitrag Nächster Beitrag