如何创建没有 gpg 签名的 Ubuntu deb 存储库?

如何创建没有 gpg 签名的 Ubuntu deb 存储库?

我有几个 Ubuntu.deb软件包,我想将它们安装在本地网络中的几台 PC 上。我不想进行 gpg 签名,就像 RedHat 一样createrepo

我跑了

dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz

并通过 HTTP 共享目录。我创建了一个sources.list文件

deb [arch=amd64] (link to http)  xenial non-free

apt update

Err:14 repo.domain.com xenial Release.gpg                                   
  404  Not Found

: The repository 'https://repo.domain.com xenial Release' is no longer signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

我尝试了问题的解决方案我如何绕过/忽略 apt 的 gpg 签名检查?但没有任何成功。

请 Ubuntu 的用户帮助我。

相关内容