DEBIAN 在线更新系统。因为国内主机商给的DEBIAN系统很少,而且版本还很老,让他们挂载新系统不是说没有就是不会,可就是习惯玩DEBIAN,没办法,只有升级系统了。
apt-get update
先更新一下。
apt-get install screen
screen -S update;
这个不用说了,当然是防止网络断掉了。
先改一下源,换成新版本的。
deb http://ftp.us.debian.org/debian/ wheezy main
deb-src http://ftp.us.debian.org/debian/ wheezy main
deb http://security.debian.org/ wheezy/updates main
deb-src http://security.debian.org/ wheezy/updates main
# wheezy-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ wheezy-updates main
deb-src http://ftp.us.debian.org/debian/ wheezy-updates main
换完之后apt-get update;一下。
开始更新DEBIAN
apt-get install apt dpkg aptitude
apt-get dist-upgrade
OK,更新完成后DEBIAN就是新版本了。
可能需要重装mysql
apt-get install mysql-server
apt-get remove --purge mysql-server
apt-get autoremove --purge mysql-server