添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
高大的桔子  ·  C++ Shared Library ...·  1 年前    · 
精明的手套  ·  Keras: Feature ...·  1 年前    · 
气势凌人的豆芽  ·  如何启用Windows ...·  1 年前    · 

Kali-Linux     apt-get update不了,换源要安装KEY,安装KEY要安装gnupg,安装gnupg要apt-get update,死循环啊

执行sudo apt-get update后,Kali报错:

Get:1 http://mirrors.neusoft.edu.cn/kali kali-rolling InRelease [30.6 kB]

Err:1 http://mirrors.neusoft.edu.cn/kali kali-rolling InRelease

The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>

Fetched 30.6 kB in 1s (20.7 kB/s)

Reading package lists... Done

W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://mirrors.neusoft.edu.cn/kali kali-rolling InRelease: The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>

W: Failed to fetch http://http.kali.org/kali/dists/kali-rolling/InRelease  The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>

W: Some index files failed to download. They have been ignored, or old ones used instead.


这个时候需要安装一个key。

可以浏览器访问: https://http.kali.org/kali/pool/main/k/kali-archive-keyring/ 然后看里面文件名是什么。现在是 kali-archive-keyring_2022.1_all.deb 这个名字可能过几天会变得

执行下面命令:

wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2022.1_all.deb --no-check-certificate
sudo apt install ./kali-archive-keyring_2022.1_all.deb

愉快的 sudo apt update 去吧

Kali-Linux apt-get update不了,换源要安装KEY,安装KEY要安装gnupg,安装gnupg要apt-get update,死循环啊执行sudo apt-get update后,Kali报错:Get:1 http://mirrors.neusoft.edu.cn/kali kali-rolling InRelease [30.6 kB]Err:1 http://mirrors.neusoft.edu.cn/kali kali-rolling InRelease...
gnupg , gnupg 2 and gnupg 1 do not seem to be installed ,but one of them is required for this operation
在安装cuda时报错‘ gnupg , gnupg 2 and gnupg 1 do not seem to be installed ,but one of them is required for this operation’ sudo apt-get update && apt-get install -y gnupg 2 没用,会报其他错误 sudo apt-get install gnupg 一步一坑…
-bash: wget: command not found的两种 解决 方法 wget 时提示 -bash:wget command not found,很明显没有安装wget软件包。一般 linux 最小化安装时,wget不会默认被安装。 可以通过以下两种方法来安装: 1、rpm 安装 rpm 下载源地址:http://mirrors.163.com/centos/6.2/os/x86_64/Packages/ 下载wget的RPM包:http://mirrors.163.com/centos/6.2/os/
最近由于项目的需求,要对所有发送到客户FTP的文档进行不对称加密,所以需要用到gnugpg这款开源的加密解密软件,因此需要在 Linux 下进行安装,由于 Linux 是Redhat4,没有Yum这类在线安装软件,需要源代码编译安装,安装过程有点复杂而且遇到一些问题,特此记录下来,以备后查: 1、解压下载的文件包:     tar -xjf gnupg -2.0.21.tar.bz2
感谢 https://www. linux dashen.com/set-up-lamp-debian-8-apache-mariadb-php7 这篇文章作者 E: gnupg , gnupg 2 and gnupg 1 do not seem to be installed , but one of them is required for this operation apt-get update deb http://deb.debian.org/debian/ buster main contrib non-free deb http://deb.debian.org/debian/ buster-updates main contrib non-free deb http://security.debian.org/debian-security buster/updates main contri
ModuleNotFoundError: No module named ' gnupg ' 是Python中的错误,表示找不到名为' gnupg '的模块。要 解决 这个问题,你可以尝试以下几个步骤: 1. 确保你已经正确安装了' gnupg '模块。你可以使用pip命令来安装它,例如:pip install gnupg 。如果已经安装了,请确保版本是最新的。 2. 检查你的Python环境是否正确配置。有时候,模块无法被找到是因为Python解释器无法正确地找到模块的位置。你可以通过在命令行中运行python命令来检查Python的路径配置。 3. 如果你使用的是虚拟环境,请确保你已经在正确的虚拟环境中安装了' gnupg '模块。有时候,模块只会在特定的虚拟环境中可用。 4. 如果以上步骤都没有 解决 问题,可能是因为' gnupg '模块不兼容你当前使用的Python版本。你可以尝试升级或降级Python版本,或者寻找与你当前Python版本兼容的' gnupg '模块版本。