Merge pull request #28066 from nophDog/master

提交译文
This commit is contained in:
Xingyu.Wang 2022-11-29 15:27:23 +08:00 committed by GitHub
commit b9550a7ea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 188 additions and 189 deletions

View File

@ -1,189 +0,0 @@
[#]: subject: "Installing Packages From External Repositories in Ubuntu [Explained]"
[#]: via: "https://itsfoss.com/adding-external-repositories-ubuntu/"
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
[#]: collector: "lujun9972"
[#]: translator: "nophDog"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
Installing Packages From External Repositories in Ubuntu [Explained]
======
You have some ideas about installing packages in Ubuntu with apt command. Those packages come from Ubuntus repositories.
How about third-party or external repository? No, I am not talking about PPA here.
Sooner or later, youll come across installation instructions that goes in at least four lines. You install something called apt-transport-https and then do something with gpg and sources list. After that, you install the package.
Cant recall completely. Let me share an example for [installing the latest version Yarn on Ubuntu][1]:
```
sudo apt install apt-transport-https curl
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
sudo apt update && sudo apt install yarn
```
Youll often come across such installation method while installing programming tools directly from the developers.
Many people just follow the instructions without thinking twice about whats going on here. Nothing wrong with that but knowing the process actually improves your knowledge on the matter and could also help in troubleshooting.
Let me explain the logic behind those lines.
### Understanding the procedure of installation from external repositories
Before you proceed, I highly recommend reading these two articles so that things are a bit more clear to you:
* [Concept of repositories in Ubuntu][2]
* [Concept of PPA in Ubuntu][3]
To recall quickly, heres a visual representation of repositories and [package manager in Linux][4].
![Illustration of repository and package manager][5]
The entire idea here is that you add a new, external repository to your system. This way, youll be able to download and install packages available from this new repository. If the repository provides an update on the package version, you get to update the installed package along with the system updates (apt update && apt upgrade).
So, how does this work? Lets go through the lines one by one.
#### Part 1: Getting HTTPS support for apt
The first line is this:
```
sudo apt install apt-transport-https curl
```
Curl is a [tool for downloading files in Linux terminal][6]. The main part here is the installation of **apt-transport-https** and frankly speaking not needed anymore.
Confused? This apt-transport-https package allows your system to access repositories over the secure HTTPS protocol. By design, Ubuntu repositories use http, not https.
Take a look at the screenshot below. The https ones are the external repositories I have added into my system. Ubuntu repositories and PPA use http.
![][7]
In the older version of apt package manager, https support was not included. apt-transport-https package adds https support to apt. To add a repository that uses https, this package is installed first.
Did I not say it is not needed anymore? Yes because the newer versions of apt (higher than 1.5) support https and thus you do not need to install apt-transport-https anymore.
And yet you see this package mentioned in the instructions. This is more for legacy reasons or for really old distribution versions that might be using an older version of apt.
Now, you may wonder why Ubuntu repositories use http, not https when https is the secure protocol. Is it not a security risk? The next segment will answer that question.
#### Part 2: Adding GPG key of the remote repository
Linux repositories have this built-in GPG-key based security mechanism. Every repository added its public GPG key to your systems trusted keys. The packages from the repositories are signed by this GPG key and thanks to the stored public key, your system verifies that the package is coming from the repository.
If there is a [mismatch between the keys, your system will throw an error][8] instead of installing or updating packages from the said repository.
So far, so good. The next step is to add the public GPG key of the external repository to your Linux system so that it trusts the package from this repository.
```
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
```
In the above command, you download the GPG key from the given URL using curl. The option `sS` ensures that you dont see the flooded output (silent mode) but shows the error (if any). The last `-` tells apt-key to take stdin instead of a file (which is the output of the curl command in this case).
The download key is added to the system with `apt-key add` command.
You can see the GPG keys added by various repositories in your system using the `apt-key list` command.
![List GPG keys][9]
Thats one way of adding the GPG key to the system. Youll some other commands that my look slightly different but do the same job of adding the public key of the repository to your system.
```
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
```
Youll notice a warning that apt-key is deprecated. You could still use apt-key command till Ubuntu 22.04 but it will eventually be removed. Lets not worry about it at the moment.
#### Part 3: Adding the external repository to your sources list
The next command adds a new entry into the sources list of your system. This way, your system will know that it has to check this repository for packages and updates.
```
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
```
There is a file /etc/apt/sources.list that contains the details of the Ubuntu repositories. This file should not be touched. All the additional repositories should be placed in their own respective file (ending with .list convention) in the /etc/apt/sources.list.d directory.
![External repository should have their own sources list file in the /etc/apt/sources.list.d directory][10]
This makes package management easier. If you are removing a repository from the system, you just need to delete the corresponding sources file. No need to mess with the main sources.list file.
Lets look at the command in a bit more detail.
```
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
```
With sh, you are asking to run the command in a new shell, instead of the [subshell][11]. `-c` option tells the sh command to read the commands from the operand instead of standard input. Then it runs the echo command which basically adds line **deb <https://dl.yarnpkg.com/debian/> stable main** to /etc/apt/sources.list.d/yarn.list file (file will be created)
Now, there could be numerous ways you can create a .list file in the specified directory and add the line with repository details in it. You could use it like this as well:
```
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
```
You get the gist, right?
#### Part 4: Installing the application from newly added repository
So far, you have added the GPG key of the repository and the URL of the repository to the system.
But your system still does not know about the package available from this new repository. This is why you need to update the local cache of package metadata first with this command:
```
sudo apt update
```
Your system will have the information about the packages available from the newly added repository and you can install the package now:
```
sudo apt install yarn
```
To save time, you can [run the two commands one after another in a single lin][12]e.
```
sudo apt update && sudo apt install yarn
```
The `&&` ensures that the second command only runs when the previous command completed without any error.
And thus the process completes.
### Did it make things clear or confused you even more?
I explained the logic behind the steps for using external repositories in Ubuntu. I hope you have a better understanding of the topic now, but it is also possible that too much detail could be confusing.
If things are still not clear or if you have additional questions, please let me know. If you notice technical inaccuracies, please let me know in the comment section.
--------------------------------------------------------------------------------
via: https://itsfoss.com/adding-external-repositories-ubuntu/
作者:[Abhishek Prakash][a]
选题:[lujun9972][b]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/abhishek/
[b]: https://github.com/lujun9972
[1]: https://itsfoss.com/install-yarn-ubuntu/
[2]: https://itsfoss.com/ubuntu-repositories/
[3]: https://itsfoss.com/ppa-guide/#comments
[4]: https://itsfoss.com/package-manager/
[5]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/10/linux-package-manager-explanation.png?resize=800%2C450&ssl=1
[6]: https://itsfoss.com/download-files-from-linux-terminal/
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/08/apt-update-http-https.png?resize=800%2C527&ssl=1
[8]: https://itsfoss.com/solve-gpg-error-signatures-verified-ubuntu/
[9]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/07/list-apt-key-gpg-ubuntu.png?resize=800%2C547&ssl=1
[10]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/08/sources-list-ubuntu.png?resize=800%2C313&ssl=1
[11]: https://linuxhandbook.com/subshell/
[12]: https://itsfoss.com/run-multiple-commands-linux/

View File

@ -0,0 +1,188 @@
[#]: subject: "Installing Packages From External Repositories in Ubuntu [Explained]"
[#]: via: "https://itsfoss.com/adding-external-repositories-ubuntu/"
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
[#]: collector: "lujun9972"
[#]: translator: "nophDog"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
# 在 Ubuntu 从外部存储库安装软件包 [详解]
你大概知道怎么在 Ubuntu 中使用 apt 命令安装软件包。那些软件包都是来自 Ubuntu 的官方存储库。
那第三方或者外部存储库呢?不,我这里并不是要讲 PPA。
早晚你会碰到那种至少四行的安装教程。你需要安装名为 `apt-transport-https` 的包,操作一下 gpg 和源列表「source list」之后你才能正常安装软件包。
没有什么印象的话,那我分享一个[在 Ubuntu 上安装最新版本的 Yarn][1]:的例子
```shell
sudo apt install apt-transport-https curl
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
sudo apt update && sudo apt install yarn
```
当你需要直接从开发者那里安装编程工具的时候,大概率会碰到这种安装方式。
许多人只是按照说明进行操作,并不会去思考其中的原理。这也没什么不对,但了解该过程实际上可以提升你在这方面的知识,而且有助于之后排除故障。
我来解释一下这些代码背后的逻辑。
### 理解从外部存储库安装的过程
在你继续往下阅读之前,我强烈建议你先看看下面这两篇文章,方便理解后续的概念:
* [什么是 Ubuntu 中的存储库][2]
* [什么是 Ubuntu 中 PPA][3]
为了让你有点印象,这里有一张软件包存储库和 [Linux 中的包管理器][4] 的图片。
![Illustration of repository and package manager][5]
整件事情其实就是在系统中添加一个新的外部存储库。这样,你就可以从这个新存储库下载并安装可用的软件包。如果这个存储库提供了包版本的更新,你可以在更新系统的同时更新这些软件包(`apt update && apt upgrade`)。
那么,这是什么工作原理呢?让我们一条一条地过一遍。
#### 第 1 部分:为 apt 获取 HTTPS 支持
第一行是这样的:
```shell
sudo apt install apt-transport-https curl
```
Curl 是一个[Linux 终端下载文件的工具][6]。这里主要的部分是安装 **apt-transport-https**,但事实上已经不需要了。
明白了吗?这个 apt-transport-https 包让你的系统通过 HTTPS 协议安全访问存储库。按照设计Ubuntu 的存储库使用 http 而不是 https 协议。
看看下面的截图。 https 这张是我已经添加到系统中的外部存储库。 Ubuntu 的存储库和 PPA 使用 http 协议。
![][7]
在旧版本的 apt 包管理器中,不支持 https 协议。 apt-transport-https 包为 apt 添加了 https 支持。要新增一个使用 https 的存储库,首先就得先安装此包。
我之前不是说不需要安装这个包了吗?是的,因为较新版本的 apt高于 1.5)已经支持 https所以你不需要再安装 apt-transport-https。
但是你依然看到我在说明中提到了这个包。这更多是出于遗留原因,而且可能还有很旧的发行版在使用旧版本的 apt 包。
现在,你可能想知道既然 https 是安全协议,那为什么 Ubuntu 的存储库还要使用 http 而不是 https。这难道没有安全风险吗接着往下看你就知道答案了。
#### 第 2 部分:添加远程存储库的 GPG 密钥
Linux 存储库内置了基于 GPG 密钥的安全机制。每个存储库都将其 GPG 公钥添加到你的系统信任密钥中。来自存储库的包由这个 GPG 密钥“签名”「signed」并且通过这份存储的公钥系统能够验证软件包正是来自这个存储库。
如果[密钥之间不匹配,你的系统会发出提醒][8],而不会继续从该存储库安装或者更新软件包。
到目前为止,一切都很顺利。下一步是将外部存储库的 GPG 公钥添加到你的 Linux 系统,以便它能接收来自该存储库的软件包。
```shell
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
```
在上面的命令中,你使用 curl 从指定的 URL 下载 GPG 密钥。选项 `sS` 能够让你不看多余的输出(静默模式),但会显示错误(如果有的话)。最后一个 `-` 告诉 apt-key 使用标准输入「stdin」而不是文件在本例中是 curl 命令的输出)。
`apt-key add` 命令已经将下载的密钥添加到系统中。
你可以通过 `apt-key list` 命令查看系统中各种存储库添加的 GPG 密钥。
![List GPG keys][9]
这是将 GPG 密钥添加到系统的一种方法。你会看到一些其它的命令,看起来略有不同,但效果一样,都是将存储库的公钥添加到你的系统里面。
```shell
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
```
你会注意到 apt-key 已被弃用的警告。在 Ubuntu 22.04 之前,你还可以使用 apt-key 命令,但它最终会被删除。现在不需要杞人忧天。
#### 第 3 部分:将外部存储库添加到源列表
下个命令是在系统的源列表中添加一个新条目。这样,你的系统就会知道它得检查该存储库中的包和更新。
```shell
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
```
有一个文件 /etc/apt/sources.list 包含 Ubuntu 存储库的详细信息。最好不要随便动这个文件。所有新增的存储库都应放在 /etc/apt/sources.list.d 目录中相应的文件里(约定以 .list 结尾)。
![External repository should have their own sources list file in the /etc/apt/sources.list.d directory][10]
这使得包管理变得更容易。如果你要从系统中删除一个存储库,只需删除相应的源文件即可。无需修改主 sources.list 文件。
让我们再仔细地看一下这行命令。
```shell
sudo sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" >> /etc/apt/sources.list.d/yarn.list'
```
使用 sh 可以在一个新的 shell 进程中运行命令,而不是 [subshell][11]。 `-c` 选项告诉 sh 命令从参数而不是标准输入读取命令。然后它运行 echo 命令,也就是把 **deb <https://dl.yarnpkg.com/debian/> stable main** 这一行添加到 /etc/apt/sources.list.d/yarn.list 文件(会创建该文件)
现在,你可以通过各种方法在指定目录中创建 .list 文件并在其中添加包含存储库详细信息的数据行。你也可以像这样使用:
```shell
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
```
明白了吧?
#### 第 4 部分:从新添加的存储库安装应用程序
到目前为止,你已经将存储库的 GPG 密钥和存储库的 URL 添加到系统中。
但是系统仍然不晓得这个新存储库中有哪些可用的包。这就是为什么你需要先使用下面这个命令更新包元数据的本地缓存:
```
sudo apt update
```
这时你的系统就已经知道新增存储库中可用软件包的信息,现在可以试试安装软件包:
```shell
sudo apt install yarn
```
为了节省时间,你可以在[同一行挨着运行这两个命令][12]e。
```
sudo apt update && sudo apt install yarn
```
`&&` 可以确保第二个命令只会在前一个命令没有任何报错的前提下运行。
整个流程就是这样。
#### 有没有豁然开朗呢,还是一脸懵逼?
我已经解释了在 Ubuntu 中使用外部存储库背后的逻辑。希望你现在能更好地理解它,当然可能还有很多细节会让你困惑。
如果你还不清楚或者还有其他问题,可以联系我。如果你发现了技术上的纰漏,记得在评论区告诉我。
--------------------------------------------------------------------------------
via: https://itsfoss.com/adding-external-repositories-ubuntu/
作者:[Abhishek Prakash][a]
选题:[lujun9972][b]
译者:[nophDog](https://github.com/nophDog)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/abhishek/
[b]: https://github.com/lujun9972
[1]: https://itsfoss.com/install-yarn-ubuntu/
[2]: https://itsfoss.com/ubuntu-repositories/
[3]: https://itsfoss.com/ppa-guide/#comments
[4]: https://itsfoss.com/package-manager/
[5]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/10/linux-package-manager-explanation.png?resize=800%2C450&ssl=1
[6]: https://itsfoss.com/download-files-from-linux-terminal/
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/08/apt-update-http-https.png?resize=800%2C527&ssl=1
[8]: https://itsfoss.com/solve-gpg-error-signatures-verified-ubuntu/
[9]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/07/list-apt-key-gpg-ubuntu.png?resize=800%2C547&ssl=1
[10]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/08/sources-list-ubuntu.png?resize=800%2C313&ssl=1
[11]: https://linuxhandbook.com/subshell/
[12]: https://itsfoss.com/run-multiple-commands-linux/