apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
时间: 2024-08-16 15:08:06 浏览: 132
"apt-key" 已经过时,建议切换到使用 "trusted.gpg.d" 文件夹来管理密钥环(gpg keyrings)。以前的 "apt-key" 命令主要用于导入、列表和操作 Gnu Privacy Guard (GPG) 密钥,但现在这种做法已不再推荐。你应该在 "trusted.gpg.d" 目录下直接处理 .gpg 或 .asc 格式的秘钥文件,这更符合现代 Debian 和 Ubuntu 系统管理密钥的方式。查阅 "apt-key(8)" 文档获取详细步骤和更新的命令行操作指南。
相关问题
apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). OK
`apt-key` 已经过时了,建议改为管理`trusted.gpg.d`目录下的密钥环文件。`apt-key` 是以前版本的 Debian 和 Ubuntu 系统中用于添加、更新和管理软件包存储库公钥的工具,但现在推荐的做法是将密钥相关的操作移到 `gpg`(GNU Privacy Guard)的命令行工具,特别是 `gpgconf` 和 `gpg-agent` 中去,以及 `~/.gnupg/trusted.gpg.d` 文件夹下存放信任的.gpg文件。
`trusted.gpg.d`是一个结构化的文件夹,你可以创建单独的子文件夹来分别存储不同的软件源的公钥。当你需要导入一个新的密钥时,可以直接将`.gpg`文件放到相应子文件夹内,然后通过`gpgconf`设置信任级别。
如果你使用的是新版的 apt 或者 dpkg,`apt-key adv` 命令依然可用,但在提示信息中会提到要更新到新的方法。总的来说,这个变化是为了更好地整合和管理密钥信任,并提供更安全的环境。
arning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
The warning you mentioned is related to the use of the `apt-key` command in managing keyring files for package repositories in Debian-based systems. Starting from Ubuntu 20.04 and Debian 10, the `apt-key` command has been deprecated, and it is recommended to manage keyring files in the `trusted.gpg.d` directory instead.
To address this warning, you can follow these steps:
1. Open a terminal.
2. Create a new file in the `trusted.gpg.d` directory:
```shell
sudo touch /etc/apt/trusted.gpg.d/custom.gpg
```
3. Import the GPG key using the `gpg` command:
```shell
sudo gpg --dearmor --output /etc/apt/trusted.gpg.d/custom.gpg /path/to/keyfile.gpg
```
Replace `/path/to/keyfile.gpg` with the actual path to the GPG key file you want to import.
4. Update the package lists:
```shell
sudo apt update
```
By following these steps, you should be able to manage keyring files without triggering the deprecated warning.
阅读全文