如何建立沒有 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 的人們請幫助我。

相關內容