2023-02-07 08:58:43 +08:00
|
|
|
|
[#]: subject: "How to Switch from Debian Stable to Testing"
|
|
|
|
|
[#]: via: "https://itsfoss.com/switch-debian-stable-testing/"
|
|
|
|
|
[#]: author: "Sagar Sharma https://itsfoss.com/author/sagar/"
|
|
|
|
|
[#]: collector: "lkxed"
|
|
|
|
|
[#]: translator: "geekpi"
|
2023-02-08 12:27:53 +08:00
|
|
|
|
[#]: reviewer: "wxy"
|
|
|
|
|
[#]: publisher: "wxy"
|
|
|
|
|
[#]: url: "https://linux.cn/article-15520-1.html"
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
如何从 Debian 稳定版切换到测试版
|
2023-02-07 08:58:43 +08:00
|
|
|
|
======
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
![][0]
|
|
|
|
|
|
2023-02-07 08:58:43 +08:00
|
|
|
|
如果你正在寻找最稳定的 Linux 发行版,当然,Debian 是正确的选择。
|
|
|
|
|
|
|
|
|
|
特别是如果你打算在服务器上使用它。
|
|
|
|
|
|
|
|
|
|
但是,在桌面方面,情况就有点不同了。我的意思是,你得到的软件包至少是一年前的,对新时代硬件的支持甚至更糟。
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
那么,在这种情况下,你会怎么做呢?好吧,你可以使用 Debian <ruby>测试版<rt>Testing</rt></ruby>。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
但在跳到解释部分之前,让我们简单了解一下 Debian 测试版。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
### 什么是 Debian 测试版?
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
Debian 社区为你提供 3 种不同的 Debian:
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
- Debian <ruby>稳定版<rt>Stable</rt></ruby>(你从他们的主页上默认得到的东西)。
|
|
|
|
|
- Debian <ruby>测试版<rt>Testing</rt></ruby>(有**新的软件包**,比 Debian 不稳定版更少出现故障)。
|
|
|
|
|
- Debian <ruby>不稳定版<rt>Unstable</rt></ruby>(拥有最新的软件包,是**所有版本中最脆弱的**)。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
因此,Debian 测试版可以被认为是稳定性和新软件包之间的一个折中点。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
我已经玩了一段时间的 Debian 测试版,没有遇到任何问题。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
事实上,许多 Debian 用户喜欢测试版而不是稳定版。尽管名字叫“测试”,但它是相当可用的。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
但是,**我还是建议你在虚拟机上进行实验**,尝试用你的主要工具来使用它,如果事情进展顺利,你可以在主系统中应用这些变化。
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
### 从 Debian 稳定版切换到 Debian 测试版
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
**警告:你不能从 Debian 测试版降级到 Debian 稳定版,因为安装脚本和安装工具只是为了用新版本替换旧版本而设计的。**
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
另外,我建议在你的主机上应用上述步骤之前,[使用 timeshift 创建一个备份][1] 。
|
|
|
|
|
|
|
|
|
|
首先,使用给定的命令更新现有的软件包:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt update && sudo apt upgrade -y
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
接下来,复制原始的 `sources.list` 文件:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo cp /etc/apt/sources.list sources.list.backup
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
现在,让我们开始第一步的工作。
|
|
|
|
|
|
|
|
|
|
#### 步骤 1:编辑 sources.list 文件
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
有两种方法可以编辑 `sources.list` 文件。要么你可以用 `testing` 手动改变当前版本的名称,要么你可以 [使用 sed 命令][2] 来完成。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
而我要用第二种方法来使整个过程更简单。你只需要使用给定的命令,它就会为你把 `bullseye` 替换成 `testing`:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo sed -i 's/bullseye/testing/g' /etc/apt/sources.list
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
现在,打开你的终端,使用给定的命令来打开 `sources.list` 文件:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo nano /etc/apt/sources.list
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
并注释掉有 `security.debian.org` 和任何以 `updates` 结尾的行,如下所示:
|
|
|
|
|
|
|
|
|
|
![comment out security sources][3]
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
如果你像我一样使用 `nano`,你可以按 `Alt + /` 跳到该行的最后。然后你要添加以下一行:
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
deb http://security.debian.org testing-security main
|
|
|
|
|
```
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
![add line to keep track of testing in debian][4]
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
然后 [保存修改并退出 nano][5] 文本编辑器。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
#### 步骤 2:更新仓库并安装新的软件包
|
|
|
|
|
|
|
|
|
|
现在,更新仓库索引,它会显示大量的更新等待:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt update
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
![update repository in linux][6]
|
|
|
|
|
|
|
|
|
|
现在,你可以使用给定的命令,它将为你提供最新的软件包:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt upgrade
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
坐下来,放松一下,因为这将需要一些时间。
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
完成后,它将向你展示从 Debian 稳定版切换到测试版时的变化列表:
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
![packages that are updated when switched to debian testing][7]
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
如果你愿意,你可以阅读,或者你可以**直接按** `q` 继续。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
现在,它会告诉你,你系统上安装的一些库需要重新启动。按 `TAB` 键,它将选择 “OK”,然后按**回车**:。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
![libraries needs to be restarted after update][8]
|
|
|
|
|
|
|
|
|
|
接下来,它会问你是否要在软件包升级期间重启服务。这里你有一个选择。由于我只做桌面使用,我将选择 “YES”。
|
|
|
|
|
|
|
|
|
|
![restart services during package upgrades without asking?][9]
|
|
|
|
|
|
|
|
|
|
完成后,你可以重启你的系统,然后使用下面的命令,让你刚才的改变完全生效:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt full-upgrade
|
|
|
|
|
```
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
现在,重启你的系统,你就会拥有最新的软件包。比如**我进入系统时我在运行 GNOME 43**:
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
![running gnome 43 in debian][10]
|
|
|
|
|
|
|
|
|
|
### 总结
|
|
|
|
|
|
2023-02-08 12:27:53 +08:00
|
|
|
|
在本教程中,我解释了如何从 Debian 稳定版切换到 Debian 测试版。我希望这对你会有帮助。
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
如果你遇到任何问题或有任何疑问,请在评论中告诉我。
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://itsfoss.com/switch-debian-stable-testing/
|
|
|
|
|
|
|
|
|
|
作者:[Sagar Sharma][a]
|
|
|
|
|
选题:[lkxed][b]
|
|
|
|
|
译者:[geekpi](https://github.com/geekpi)
|
2023-02-08 12:27:53 +08:00
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2023-02-07 08:58:43 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]: https://itsfoss.com/author/sagar/
|
|
|
|
|
[b]: https://github.com/lkxed
|
|
|
|
|
[1]: https://itsfoss.com/backup-restore-linux-timeshift/
|
|
|
|
|
[2]: https://linuxhandbook.com/sed-command-basics/
|
2023-02-08 12:27:53 +08:00
|
|
|
|
[3]: https://itsfoss.com/content/images/wordpress/2022/11/comment-out-security-sources.gif
|
|
|
|
|
[4]: https://itsfoss.com/content/images/wordpress/2022/11/2.-add-line-to-keep-track-of-testing-in-debian.png
|
2023-02-07 08:58:43 +08:00
|
|
|
|
[5]: https://linuxhandbook.com/nano-save-exit/
|
2023-02-08 12:27:53 +08:00
|
|
|
|
[6]: https://itsfoss.com/content/images/wordpress/2022/11/update-repository-in-linux.png
|
|
|
|
|
[7]: https://itsfoss.com/content/images/wordpress/2022/11/packages-that-are-updated-when-switched-to-debian-testing.png
|
|
|
|
|
[8]: https://itsfoss.com/content/images/wordpress/2022/11/libraries-needs-to-be-restarted-after-update.png
|
|
|
|
|
[9]: https://itsfoss.com/content/images/wordpress/2022/11/restart-services-during-package-upgrades-without-asking.png
|
|
|
|
|
[10]: https://itsfoss.com/content/images/wordpress/2022/11/running-gnome-43-in-debian.png
|
|
|
|
|
[0]: https://img.linux.net.cn/data/attachment/album/202302/08/122659a4919hso9onkbmun.jpg
|