本文介绍如何从Ubuntu 12.04升级到Ubuntu 14.04 LTS。 通常,每两年发布的Ubuntu .04版本是长期支持(LTS)版本,例如Ubuntu 12.04,14.04等。有效地,这意味着LTS版本支持错误修复和安全更新,只要5年,因此用户无权通过弹出窗口警告他们安装最新的可用版本。
1初步说明
本教程基于Ubuntu 12.04服务器,因此您应该在继续本教程之前设置基本的Ubuntu 12.04服务器安装。 系统应该有一个静态IP地址。 我在本教程中使用192.168.0.100
作为我的IP地址,将server1.example.com
用作主机名。
2将现有的Ubuntu LTS版本升级到下一个可用的LTS
虽然这种现象并不影响常规Ubuntu版本的使用,但是那些试图访问更新的功能和最新应用程序的用户可以选择将其系统上的现有Ubuntu LTS升级到下一个可用版本,如下所述。
重要提示:在进行升级之前,请将数据完全备份到外部设备(U盘或CD / DVD)上。
数据的妥善备份后,我们将按以下步骤进行:
apt-get update
apt-get install update-manager-core
然后编辑文件/ etc / update-manager / release-upgrades
:
vi /etc/update-manager/release-upgrades
# 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=lts
在上述文件中,您可以使用该选项升级到LTS或正常版本升级,您希望将其放在Prompt = lts
中的升级由于我们想要LTS更新,因此我选择它。
现在我们可以通过运行以下命令继续更新:
do-release-upgrade -d
系统将提示您要求服务更新和其他值,只需选择选项“是”即可完成。 获取分发升级可能需要时间。 在我的情况下,花了20分钟,可能会有所不同。
分发升级后,将要求重新启动,只需重新启动,然后在下次登录提示后检查bash提示符为:
cat /etc/lsb-release
root@server1:~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.1 LTS"
root@server1:~$
恭喜! 你已经成功升级到Ubuntu最新的LTS版本的Ubuntu 14.04 :)
3链接
- Ubuntu: http : //www.ubuntu.com/