ich habe noch ein System mit einem Debian7 Wheezy mit einem XEN4-Kernel 3.15.2 (x86_64) am laufen.
Meine Xen Domains die mit Wheezy als Grundsystem erzeugt werden upgrade ich immer so:
--->von Debian7 zu Debian8
Code: Alles auswählen
sources.list anpassen:
nano /etc/apt/sources.list
deb http://ftp.debian.org/debian/ jessie main
deb-src http://ftp.debian.org/debian/ jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main
# jessie-updates, previously known as 'volatile'
deb http://ftp.debian.org/debian/ jessie-updates main
deb-src http://ftp.debian.org/debian/ jessie-updates main
öffentlichen Schlüssel holen:
gpg --keyserver keys.gnupg.net --recv-key AA8E81B4331F7F50
gpg -a --export AA8E81B4331F7F50 | apt-key add -
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Code: Alles auswählen
sources.list anpassen:
deb http://ftp.debian.org/debian/ stretch main
deb-src http://ftp.debian.org/debian/ stretch main
deb http://security.debian.org/debian-security stretch/updates main
deb http://security.debian.org/ stretch/updates main
deb-src http://security.debian.org/ stretch/updates main
# stretch-updates, previously known as 'volatile'
deb http://ftp.debian.org/debian/ stretch-updates main
deb-src http://ftp.debian.org/debian/ stretch-updates main
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Code: Alles auswählen
sources.list anpassen:
deb http://ftp.debian.org/debian/ buster main
deb-src http://ftp.debian.org/debian/ buster main
deb http://security.debian.org/debian-security buster/updates main
deb http://security.debian.org/ buster/updates main
deb-src http://security.debian.org/ buster/updates main
# buster-updates, previously known as 'volatile'
deb http://ftp.debian.org/debian/ buster-updates main
deb-src http://ftp.debian.org/debian/ buster-updates main
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Die Netzwerkkonfiguration der Karten sieht so aus:
cat /etc/network/interfaces
Code: Alles auswählen
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
#setup default
iface lo inet loopback
#setup default
# The primary network interface
#allow-hotplug eth1 #setup default
#iface eth1 inet dhcp #setup default
# This is an autoconfigured IPv6 interface
#iface eth1 inet6 auto #setup default
# eth0
auto eth0
allow-hotplug eth0
iface eth0 inet static
up ifconfig eth0 nnn.nnn.nnn.nnn
# LANBRIDGE - green (Intranet / local network)
auto LANBRIDGE
iface LANBRIDGE inet static
address nnn.nnn.nnn.nnn
netmask nnn.nnn.nnn.nnn
network nnn.nnn.nnn.nnn
broadcast nnn.nnn.nnn.nnn
gateway nnn.nnn.nnn.nnn
dns-nameservers nnn.nnn.nnn.nnn
bridge_ports eth0
bridge_stp off
post-up ethtool -K LANBRIDGE tx off rx off gro on
post-up ip link set LANBRIDGE promisc off
# possible error fix
post-up ethtool -K eth0 tx off rx off
#ethtool -K eth0 rx off
# eth1
auto eth1
iface eth1 inet static
up ifconfig eth1 0.0.0.0
# WANBRIDGE - red (Internet)
auto WANBRIDGE
iface WANBRIDGE inet manual
bridge_ports eth1
bridge_stp off
post-up ethtool -K WANBRIDGE tx off rx off gro on
Danke