Debian 一直維護着至少三個發行版: 穩定版(stable),測試版(testing) 和 不穩定版(unstable)。架構
穩定版(stable)測試
穩定版包含了 Debian 官方最近一次發行的軟件包。spa
測試版(testing)隊列
測試版包含了那些暫時未被收錄進入穩定版的軟件包,但它們已經進入了候選隊列。使用這個版本的最大益處在於它擁有更多版本較新的軟件。開發
不穩定版(unstable)get
不穩定版存放了 Debian 現行的開發工做。一般,只有開發者和那些喜歡過驚險刺激生活的人選用該版本。it
不穩定版的版本代號永遠都被稱爲 sid。io
處於 unstable 版本的 testing 經過級別測試後登記到 'testing' 目錄.table
這些軟件包必須可同時運行於全部架構, 而且沒有關聯性問題影響到其卸載; 比起在 unstable 中的相應版本, 它們有更少的 release-critical 錯誤. 咱們將 'testing' 做爲更佳發佈候選版本.
test
更多:http://www.debian.org/releases/
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
穩定版通過了長時間的磨練,所以軟件會比較「古老」,不穩定版又太不穩定。折中一下,能夠選升級到測試版的系統。
執行以下命令:
$ 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
注意:須要更新的內容可能很是多!
更多:https://wiki.debian.org/DebianTesting