2022-10-22 19:20:32 +08:00
|
|
|
|
[#]: subject: "How to Update or Upgrade Ubuntu Offline without Internet"
|
|
|
|
|
[#]: via: "https://www.debugpoint.com/how-to-update-or-upgrade-ubuntu-offline-without-internet/"
|
|
|
|
|
[#]: author: "Arindam https://www.debugpoint.com/author/admin1/"
|
|
|
|
|
[#]: collector: "lkxed"
|
2022-11-11 21:50:38 +08:00
|
|
|
|
[#]: translator: "littlebirdnest"
|
2022-11-14 23:28:11 +08:00
|
|
|
|
[#]: reviewer: "wxy"
|
2022-11-14 23:30:34 +08:00
|
|
|
|
[#]: publisher: "wxy"
|
|
|
|
|
[#]: url: "https://linux.cn/article-15253-1.html"
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
如何在没有互联网连接的情况下离线更新 Ubuntu
|
2022-10-22 19:20:32 +08:00
|
|
|
|
======
|
|
|
|
|
|
2022-11-14 23:30:34 +08:00
|
|
|
|
![](https://img.linux.net.cn/data/attachment/album/202211/14/232951blxmbe6wn5eympxq.jpg)
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
> 本指南介绍了如何在没有互联网连接的情况下离线更新 Ubuntu 的步骤。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
在很多情况下,你可能需要在没有互联网连接的情况下更新你的 Ubuntu 系统。你可能在外地不方便上网,也可能你需要更新一堆未联网的 Ubuntu,不管是哪种情况,保持你的系统更新最新的软件包总是需要的。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
当然,始终建议通过联网来更新系统。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
但有时,出于安全考虑,这是不行的。连接到互联网可能需要给你的系统进行额外的加固,以保护它们免受黑客和恶意软件的攻击。
|
|
|
|
|
|
|
|
|
|
以下的方法使用 [apt-offline][1] 来解决这些问题,并概述了在没有互联网的情况下离线更新 Ubuntu 的步骤。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-11 22:47:46 +08:00
|
|
|
|
### 准备环节
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
- 一台能连接到网络的 Ubuntu(你朋友的、咖啡馆、实验室系统)
|
|
|
|
|
- 存储了软件包的 U 盘
|
|
|
|
|
- 两个系统都安装了 `apt-offline`:一个系统离线,另一个系统联网
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-11 22:47:46 +08:00
|
|
|
|
### 安装 apt-offline
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
在两个系统下安装 `apt-offline`。你可以使用以下命令安装:
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt install apt-offline
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
如果你想在离线的目标系统安装 `apt-offline`,你可以提前下载到 U 盘里,然后复制到目标系统,再使用下面的命令安装。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
Ubuntu 22.04 LTS 和其他版本的下载链接如下所示。你可以选择一个镜像并下载 deb 文件。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
> **[下载 .deb 文件 – apt-offline][2]**
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo dpkg -i name_of_package.deb
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
### 如何更新 Ubuntu
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
在离线的目标系统上打开终端,使用以下命令创建一个 .sig 签名文件:
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt-offline set ~/offline-data.sig
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
![创建签名文件][4]
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
在这个刚创建的签名文件中,包含下载所需的软件包的路径和详细信息。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
![签名文件的内容][6]
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
把签名文件复制到 U 盘中,再插到联网的 Ubuntu 系统上。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
在联网的 Ubuntu 上创建一个目录(参见下面)来存放这些文件。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
打开一个终端,运行以下命令来下载所需的软件包。记得根据你的系统,更改下载目录和 .sig 签名文件的路径。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
apt-offline get -d ~/offline-data-dir offline-data.sig
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
![下载软件包以离线安装][8]
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
你可以看到文件相应下载,然后复制整个下载目录到 U 盘,再插到离线的 Ubuntu 系统。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
运行以下命令将下载的软件包安装到离线系统,记得根据你的系统更改目录路径。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt-offline install offline-data-dir/
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
![安装软件包][10]
|
|
|
|
|
|
|
|
|
|
如果一切顺利,你将获得一个更新完的 Ubuntu。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
重复以上步骤,就可以保持你的离线 Ubuntu 为最新版本。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
2022-11-14 23:28:11 +08:00
|
|
|
|
希望以上教程能帮到你更新离线的 Ubuntu 系统,如果你遇到任何问题,请在下面的评论框中告诉我。
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://www.debugpoint.com/how-to-update-or-upgrade-ubuntu-offline-without-internet/
|
|
|
|
|
|
|
|
|
|
作者:[Arindam][a]
|
|
|
|
|
选题:[lkxed][b]
|
2022-11-14 23:28:11 +08:00
|
|
|
|
译者:[littlebirdnest](https://github.com/littlebirdnest)
|
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2022-10-22 19:20:32 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]: https://www.debugpoint.com/author/admin1/
|
|
|
|
|
[b]: https://github.com/lkxed
|
|
|
|
|
[1]: https://github.com/rickysarraf/apt-offline
|
|
|
|
|
[2]: https://packages.ubuntu.com/focal/all/apt-offline/download
|
|
|
|
|
[3]: https://www.debugpoint.com/wp-content/uploads/2021/03/Create-the-sig-file-1024x204.jpg
|
|
|
|
|
[4]: https://www.debugpoint.com/wp-content/uploads/2021/03/Create-the-sig-file.jpg
|
|
|
|
|
[5]: https://www.debugpoint.com/wp-content/uploads/2021/03/sig-file-contents-1024x250.jpg
|
|
|
|
|
[6]: https://www.debugpoint.com/wp-content/uploads/2021/03/sig-file-contents.jpg
|
|
|
|
|
[7]: https://www.debugpoint.com/wp-content/uploads/2021/03/Download-the-packages-to-install-offline-1024x437.jpg
|
|
|
|
|
[8]: https://www.debugpoint.com/wp-content/uploads/2021/03/Download-the-packages-to-install-offline.jpg
|
|
|
|
|
[9]: https://www.debugpoint.com/wp-content/uploads/2021/03/Installing-packages-offline-update-ubuntu-1024x509.jpg
|
|
|
|
|
[10]: https://www.debugpoint.com/wp-content/uploads/2021/03/Installing-packages-offline-update-ubuntu.jpg
|