如何將Ubuntu14.04 Server安全的升級(jí)到14.10
你可能已經(jīng)知道如何將你的 Ubuntu 桌面升級(jí)到最新版本了,不過(guò)如果你用的 Ubuntu Server,而且也正好又希望升級(jí)一下的話(前提是,不會(huì)影響你的應(yīng)用。一般來(lái)說(shuō),對(duì)于服務(wù)器操作系統(tǒng),應(yīng)該采用保守態(tài)度。如果不是必須升級(jí)才能解決的安全問(wèn)題,最好不要升級(jí),而是采用各種外部手段來(lái)解決。)
如果想從Ubuntu14.04/13.10/13.04/12.10/12.04或者更老的版本升級(jí)到14.10,只要遵循下面給出的步驟。注意,你不能直接從13.10升級(jí)到14.10。你應(yīng)該先將13.10升級(jí)到14.04在從14.04升級(jí)到14.10。下面是詳細(xì)步驟。
下面的步驟不僅能用于14.10,也兼容于一些像Lubuntu14.10,Kubuntu14.10和Xubuntu14.10等的Ubuntu衍生版本
重要:在升級(jí)之前,保險(xiǎn)起見(jiàn),不要忘了將你的數(shù)據(jù)在U盤(pán)或外部硬盤(pán)上保存一下。
服務(wù)器升級(jí)
從ubuntu14.04的服務(wù)器升級(jí)到14.10的服務(wù)器,采用下面的步驟。
安裝update-manager-core 這個(gè)包如果之前沒(méi)唷安裝的話:
sudo apt-get install update-manager-core
編輯 /etc/update-manager/release-upgrades這個(gè)文件。
sudo nano /etc/update-manager/release-upgrades
像下面那樣設(shè)置Prompt=normal或者Prompt=lts
# Default behavior for the release upgrader.
[DEFAULT]
# Default prompting behavior, valid options:
#
# never - Never check for a new release.
# normal - Check to see if a new release is available. If more than one new
# release is found, the release upgrader will attempt to upgrade to
# the release that immediately succeeds the currently-running
# release.
# lts - Check to see if a new LTS release is available. The upgrader
# will attempt to upgrade to the first LTS release available after
# the currently-running one. Note that this option should not be
# used if the currently-running release is not itself an LTS
# release, since in that case the upgrader won‘t be able to
# determine if a newer release is available.
Prompt=normal
現(xiàn)在可以通過(guò)下面的命令來(lái)更新你的服務(wù)系統(tǒng)了。
sudo do-release-upgrade -d
直到屏幕提示你已完成。