如何升级到未发布的 Ubuntu 版本进行测试?
答案1
真正的命令行方式是(例如如果你没有 GUI):
sudo do-release-upgrade -d
表示-d
更新到开发版本
do-release-upgrade [选项]
描述
Upgrade the operating system to the latest release from the command-line. This is the preferred command if the machine has no graphic environment or if the machine is to be upgraded over a remote connection.
选项
-h, --help show help message and exit -d, --devel-release Check if upgrading to the latest devel release is possible
答案2
按Alt+F2并输入update-manager -d
。在窗口顶部,您将看到有关新 Ubuntu+1“版本”的信息。
但是,不建议升级到开发版本,因为它是一个不稳定的版本。
遇到问题时请参阅此问题以获取提示:Ubuntu 的 Alpha/Beta 版本存在问题,我该怎么办?
答案3
升级方式有两种:
- 使用更新管理器升级
- 使用备用 CD 升级
但请注意,不建议将其升级到 Ubuntu+1,因为它不稳定。
使用更新管理器升级:
按Alt+F2然后输入update-manager -d
。当更新管理器出现时,单击升级。
使用备用 CD 升级:
您也可以使用备用 CD 进行升级。下载后最新版本然后按Alt+F2并输入gksu /cdrom/cdromupgrade
。
由于这是开发版本,您几乎肯定会遇到问题。请参阅:Ubuntu 的 Alpha 版本存在问题,我该怎么办?
答案4
您可以随时从以下网址下载即将发布的 Ubuntu 版本 ISO 文件:
http://cdimage.ubuntu.com/daily-live/current/
该链接是永久的……它始终指向后续版本
下载 ISO 文件后,使用 unetbootin 刻录到 USB 上https://unetbootin.github.io/ 并从该 USB 启动(或将 ISO 刻录到 DVD 上)
有关如何将 ISO 文件刻录到 USB 记忆棒的说明:
sudo add-apt-repository ppa:gezakovacs/ppa
sudo apt-get update
sudo apt-get install unetbootin
插入你的 USB 记忆棒 - 格式化为 FAT
sudo unetbootin # then choose ISO and pick local ISO file
现在选择 Diskimage(而不是 Distribution)并拉出刚刚下载的 ISO 文件
要从此 USB 启动,可能需要您在重启时按 ESC 键进入 BIOS 设置,以便从 USB 启动,而不是从普通的 SSD/硬盘启动
启动后启动升级应用程序,它为您提供了在现有操作系统上安装新操作系统等选项
或者,在备份关键文档后执行升级
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt install update-manager-core;
然后进行此编辑
vi /etc/update-manager/release-upgrades
Prompt=normal # to allow upgrade to next available
# Prompt=lts # <-- to go from current LTS to next one ... say 16.04 to 18.04
sudo do-release-upgrade -d