Wie kann ich am einfachsten die Kanotix-2006-RC4 nach Installation auf Festplatte aktualisieren?Nach der Installation und Netzwerkeinrichtung führst du folgende Schritte aus:
(bitte die Reihenfolge einhalten!
Konsole als root anmelden
---------------------------------------------------------------------------------------------------------------------
# Steps to update right - no real script due to init changes
# Replace sources.list
wget -NO /etc/apt/sources.list http://kanotix.com/files/fix/debian-etch-kde/sources.list
# Get new gpg keys if possible
for k in $(apt-get update 2>&1|grep -o NO_PUBKEY.*|sed 's/NO_PUBKEY //g');do gpg --recv-keys --keyserver wwwkeys.eu.pgp.net $k;gpg --armor --export $k|apt-key add -;done
apt-get update
# delete conflicting packages
apt-get remove --purge knxcc-kde zd1211-firmware
# update Kanotix scripts for nvidia/fglrx install
update-scripts-kanotix.sh
# Download only in X
apt-get dist-upgrade -d
# Switch to textmode, for pure Debian/Ubuntu use "/etc/init.d/kdm stop" or "/etc/init.d/gdm stop"
init 3
# Do real dist-upgrade, sometime "apt-get install -f" needed to fix problems
apt-get dist-upgrade
# Switch back to X
init 5
# alterative to init 5: use install-nvidia-debian.sh or install-fglrx-debian.sh
# Fix java symlink for iceweasel
ln -fs /etc/alternatives/firefox-javaplugin.so /usr/lib/iceweasel/plugins/libjavaplugin.so
# Manually install not yet updated packages (just an example)
apt-get install debtags
# Clean up
while D=$(deborphan);test -n "$D"; do apt-get remove --purge --yes $D; done
remove-orphans
# Delete downloaded packages to save space (optional) - or backup /var/cache/apt/archives/*.deb first
apt-get clean
-----------------------------------------------------------------------------------------------------------------------
Wenn alles sauber durchgelaufen ist, hast du ein Kanotix basierend auf Debian Etch/Stable auf neuesten Stand.
nach oben