红联Linux门户
Linux帮助

Debian从稳定版升级到测试版

发布时间:2015-12-21 15:55:07来源:linux网站作者:lowkey2046

1.关于Debian 的发行版本

Debian 一直维护着至少三个发行版: 稳定版(stable),测试版(testing) 和 不稳定版(unstable)。

稳定版(stable)

稳定版包含了 Debian 官方最近一次发行的软件包。

测试版(testing)

测试版包含了那些暂时未被收录进入稳定版的软件包,但它们已经进入了候选队列。使用这个版本的最大益处在于它拥有更多版本较新的软件。

不稳定版(unstable)

不稳定版存放了 Debian 现行的开发工作。通常,只有开发者和那些喜欢过惊险刺激生活的人选用该版本。

不稳定版的版本代号永远都被称为 sid。

处于 unstable 版本的 testing 通过级别测试后登记到 'testing' 目录.

这些软件包必须可同时运行于所有架构, 并且没有关联性问题影响到其卸载; 比起在 unstable 中的相应版本, 它们有更少的 release-critical 错误. 我们将 'testing' 作为更佳发布候选版本.


2.从稳定版升级到测试版

稳定版经过了长时间的磨练,因此软件会比较“古老”,不稳定版又太不稳定。折中一下,可以选升级到测试版的系统。

执行如下命令:

$ sudo vi /etc/apt/sources.list

可能是如下内容:

deb http://mirrors.163.com/debian/ wheezy main

deb-src http://mirrors.163.com/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://mirrors.163.com/debian/ wheezy-updates main

deb-src http://mirrors.163.com/debian/ wheezy-updates main

将所有的 wheezy 改为 testing ,结果如下:

deb http://mirrors.163.com/debian/ testing main

deb-src http://mirrors.163.com/debian/ testing main

deb http://security.debian.org/ testing/updates main

deb-src http://security.debian.org/ testing/updates main

# wheezy-updates, previously known as 'volatile'

deb http://mirrors.163.com/debian/ testing-updates main

deb-src http://mirrors.163.com/debian/ testing-updates main

然后执行:

$ sudo apt-get update && apt-get upgrade

注意:需要更新的内容可能非常多!


保留原有系统数据升级到最新版Ubuntu(全新安装):http://www.linuxdiyf.com/linux/16552.html

Ubuntu 14.04升级到Ubuntu 16.04的方法:http://www.linuxdiyf.com/linux/15958.html

Debian 7 Wheezy升级到Debian 8 Jessie的具体步骤:http://www.linuxdiyf.com/linux/15522.html

Fedora22升级到Fedora23:http://www.linuxdiyf.com/linux/15521.html

如何将Ubuntu 15.04升级到Ubuntu 15.10:http://www.linuxdiyf.com/linux/14578.html