Hey ....
here is the current Update script:
#!/bin/sh
# SET VARIABLES
backSuffix=.1004
## SOURCE LIST
sourceBackup=/etc/apt/sources.list${backSuffix}
releaseFrom=lucid
releaseName=precise
# UPGRADE LMCE
echo 'Start Upgrade ...'
# MODIFY FILES BECAUSE OF CHANGES IN NEW VERSIONS
## SOURCES.LIST
echo 'save backup "sources.list" to' $sourceBackup '...'
cp /etc/apt/sources.list $sourceBackup
echo 'Set package entries from' $releaseFrom 'to' $releaseName
#sed -i "s/$releaseFrom/$releaseName/g" /etc/apt/sources.list
sed -i "s/beta2/unstable/g" /etc/apt/sources.list
## MYSQL
mysqlUtf8='default-'
mysqlUtf8Comment='#default-'
mySqlConf=/etc/mysql/my.cnf${backSuffix}
## MYSQL
echo 'save backup "my.cnf" to ' $mySqlConf '...'
cp /etc/mysql/my.cnf ${mySqlConf}
echo 'Set value in my.cnf from' $mysqlUtf8 'to' $mysqlUtf8Comment
sed -i "s/$mysqlUtf8/$mysqlUtf8Comment/g" /etc/mysql/my.cnf
sed -i "s/$mysqlUtf8/$mysqlUtf8Comment/g" /etc/mysql/conf.d/lmce-my.cnf
echo '### do-release-upgrade'
do-release-upgrade -mode=desktop
echo '### REENABLE THIRD PARTY SOURCES'
sed -i "s/# deb/deb/g" /etc/apt/sources.list
echo '### MAKE SURE ALL PACKAGES ARE CONFIGURED'
apt-get update
apt-get -y --force-yes install xorg xserver-xorg
apt-get -y --force-yes install pluto-dcerouter
/usr/pluto/bin/ConfirmDependencies -h localhost -u root -o 20 -f -d 1 install > /usr/pluto/bin/verifyinstallation.sh && chmod +x /usr/pluto/bin/verifyinstallation.sh && /usr/pluto/bin/verifyinstallation.sh
apt-get -y dist-upgrade
echo '12.04 installed? ...'
i tried it serveral times in my VM to update from 10.04 to 12.04 but after "do-release-upgrade" my lan connection is almost dead.
It might run well on a "normal" (not VM) install.
If anyone knoww howto fix this or what is causing the slow lan connection after "do-release-upgrade" please help me! :-)
cheers,
ochorocho