AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题

问题[ppa](ubuntu)

Martin Hope
Microwave
Asked: 2024-09-21 00:24:45 +0800 CST

如何在使用 debuild 为启动板构建时添加 Changed-By?

  • 8

我决定分叉一个软件包并将其放在 launchpad 上的 PPA 上。但它一直被拒绝,因为 sources.changes 文件没有 Changed-By:我分叉的其他软件包被接受,但 Changed-By 仍然是旧的维护者,我尝试在所有文件中使用 jedit 搜索他,但我没有在两个软件包的源代码中找到一行使 CHanged-By 的行。

来自 Lanchpad 的电子邮件:被拒绝:无法在更改文件中找到必填字段“Changed-By”。由于之前出现严重错误,无法进一步处理错误。horizo​​n-installer (0.1.0) noble; urgency=medium === 如果您不明白您的文件被拒绝的原因,请发送电子邮件至[email protected]寻求帮助(需要会员资格)。

ppa
  • 1 个回答
  • 29 Views
Martin Hope
Ap0st0l
Asked: 2024-08-22 20:11:21 +0800 CST

如何从 PPA 安装 Thunderbird 128“Nebula”?

  • 7

我添加了存储库ppa:mozillateam/ppa,但它安装的是 Thunderbird 115,而不是最新的 128。有没有办法从 PPA 安装 Thunderbird 128?或者有没有可用的 Thunderbird 128 deb 版本?

ppa
  • 2 个回答
  • 88 Views
Martin Hope
Archisman Panigrahi
Asked: 2024-04-10 14:09:29 +0800 CST

如何修复使用弱算法密钥的 Launchpad PPA?

  • 5

我的sudo apt update输出有如下警告:

W: https://ppa.launchpadcontent.net/apandada1/blanket/ubuntu/dists/noble/InRelease: Signature by key 95ACDEBD8BFF99ABE0F26A49A507B2BBA7803E3B uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/apandada1/foliate/ubuntu/dists/noble/InRelease: Signature by key 95ACDEBD8BFF99ABE0F26A49A507B2BBA7803E3B uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/apandada1/marker/ubuntu/dists/noble/InRelease: Signature by key 95ACDEBD8BFF99ABE0F26A49A507B2BBA7803E3B uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/apandada1/numbat/ubuntu/dists/noble/InRelease: Signature by key 95ACDEBD8BFF99ABE0F26A49A507B2BBA7803E3B uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/apandada1/xournalpp-stable/ubuntu/dists/noble/InRelease: Signature by key 95ACDEBD8BFF99ABE0F26A49A507B2BBA7803E3B uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/libreoffice/ppa/ubuntu/dists/noble/InRelease: Signature by key 36E81C9267FD1383FCC4490983FBA1751378B444 uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/mati75/gimp30/ubuntu/dists/noble/InRelease: Signature by key 3D7CDBD93E20A76CCB0B732792E8759D76F09DD6 uses weak algorithm (rsa1024)
W: https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/dists/noble/InRelease: Signature by key 0AB215679C571D1C8325275B9BDB3D89CE49EC21 uses weak algorithm (rsa1024)

其中一些是我自己的 PPA (apandada1),我想提高它们的安全性。我怎样才能做到这一点?我是否必须生成新的 GPG 密钥并使用该密钥签署软件包?

最近我一直在使用 Launchpad 的配方来生成 PPA 包,并且不再手动构建(然后上传)它们。那么,如何使用弱算法解决密钥问题呢?

该密钥甚至没有列在我的 PGP 密钥中。它以某种方式由 Launchpad 生成,用于对 Launchpad 配方生成的包进行签名。

ppa
  • 2 个回答
  • 106 Views
Martin Hope
Bram
Asked: 2023-03-03 07:42:42 +0800 CST

debian/changelog 是否必须特定于版本?

  • 8

我想创建一个适用于多个操作系统版本的 debian 源代码包。

最初,我的目标是 kinetic,并且有这样的更新日志格式:

gfxi (1.3-1) kinetic; urgency=medium

  * Add install and uninstall targets to Makefile.

...

从手册:

 distributions lists one or more space-separated distributions where this version should be
       installed when it is uploaded; it is copied to the Distribution field in the .changes
       file.  distributions must be terminated by a semicolon (U+003B ‘;’).

所以我将更改日志条目更改为:

gfxi (1.3-2) jammy kinetic lunar; urgency=medium

  * Add jammy and lunar releases.
...

命令debuild -S成功,但是当我使用 dput 将 debian 源包上传到我的 PPA 时,构建器返回:

Rejected:
Unable to find distroseries: jammy kinetic lunar
Further error processing not possible because of a critical previous error.

gfxi (1.3-2) jammy kinetic lunar; urgency=medium

  * Add jammy and lunar releases.

我是否错误地阅读了手册?为什么我不能在我的更新日志文件中列出操作系统版本?

ppa
  • 1 个回答
  • 183 Views
Martin Hope
Behnamkvl
Asked: 2022-04-24 12:09:04 +0800 CST

如何在 Ubuntu 22.04 中安装 bomi 媒体播放器?

  • 2
sudo add-apt-repository ppa:nemonein/bomi
sudo apt-get install bomi

不管用。

错误:

E: The repository 'https://ppa.launchpadcontent.net/nemonein/bomi/ubuntu jammy Release' does not have a Release file.
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.

我已经尝试过这个问题的解决方案,但它不起作用。

谢谢。

ppa
  • 1 个回答
  • 189 Views
Martin Hope
Mihir
Asked: 2022-04-16 01:47:19 +0800 CST

无法删除不支持我的 Ubuntu 版本的 ppa。ppa-purge 也不起作用

  • 0

我添加了一个不支持我的 ubuntu 版本(21.10)的 flatpak ppa 存储库。如何从我的系统中删除它?

ppa-purge 在这种情况下也不起作用:

$ sudo ppa-purge ppa:flatpak/stable
[sudo] password for mihir: 
Updating packages lists
E: The repository 'http://ppa.launchpad.net/flatpak/stable/ubuntu impish Release' does not have a Release file.
Warning:  apt-get update failed for some reason
ppa
  • 2 个回答
  • 88 Views
Martin Hope
Archisman Panigrahi
Asked: 2021-04-04 20:13:28 +0800 CST

到目前为止是否有任何恶意 PPA?

  • 6

人们经常不鼓励用户使用 PPA,因为 PPA 可能包含可能破坏系统的库和包。自 2010 年以来我一直在使用 PPA,从未遇到过问题(当然,我会在添加 PPA 之前检查是否托管任何可疑包)。

通常,开发人员制作 PPA 是为了帮助他人安装软件,而不是破坏他们的系统。此外,包裹需要进行数字签名,这样就可以追溯包裹可疑物品的人。

我想知道“PPA 有害”是否是许多人面临的普遍问题,还是人们传播的普遍信念(没有太多证据)。

我想问一些事实(这样问题就不会变成“基于意见的”)。

  1. 到目前为止是否有任何恶意 PPA?恶意,我的意思是故意打包以创建依赖地狱的东西,或者会用 postinstall 脚本弄乱主目录或/目录的东西,或者破坏安装的东西。

(由于基于意见的问题已关闭,因此我正在寻找此类有害 PPA 的示例,以便可以用事实来回答)。

  1. 用户有什么方法可以在 Launchpad 中报告可能有害的 PPA?

PPA 是指托管在 Launchpad 中的 PPA,而不是托管在任何网站上的任何第三方存储库。

ppa
  • 2 个回答
  • 667 Views
Martin Hope
Omeriko
Asked: 2021-03-20 06:12:44 +0800 CST

无法从 18.04 升级到 20.04 -“Ubuntu 未提供非官方软件包...”

  • 0

运行sudo do-release-upgrade时偶然发现错误:

An unresolvable problem occurred while calculating the upgrade. 

This was likely caused by: 
* Unofficial software packages not provided by Ubuntu 
Please use the tool 'ppa-purge' from the ppa-purge 
package to remove software from a Launchpad PPA and 
try the upgrade again. 

If none of this applies, then please report this bug using the 
command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal. If 
you want to investigate this yourself the log files in 
'/var/log/dist-upgrade' will contain details about the upgrade. 
Specifically, look at 'main.log' and 'apt.log'. 


Restoring original system state

Aborting
Reading package lists... Done    
Building dependency tree          
Reading state information... Done

我附上了 apt.log 和 main.log https://gist.github.com/omerbn/6e44593d8cab464be7f959b426d1c31c

接下来我该怎么办?

谢谢,

○

ppa
  • 3 个回答
  • 1142 Views
Martin Hope
Code Lover
Asked: 2020-12-24 00:03:29 +0800 CST

sudo apt-get 更新错误,需要帮助 [重复]

  • 0
这个问题在这里已经有了答案:
如果存储库/PPA 没有发布文件,我该怎么办? (5 个回答)
1 年前关闭。

当我输入 command:sudo apt-get update时,出现以下错误:

Err:12 http://ppa.launchpad.net/freyja-dev/unity-tweak-tool-daily/ubuntu focal Release
  404  Not Found [IP: 91.189.95.85 80]

E: The repository 'http://ppa.launchpad.net/freyja-dev/unity-tweak-tool-daily/ubuntu focal Release' does not have a Release file.

这是我的命令的完整输出:

命令输出

我想问一下怎么解决。我是新手,寻求帮助。

package-management updates ppa apt 20.04
  • 1 个回答
  • 914 Views
Martin Hope
ysth
Asked: 2020-12-23 11:57:42 +0800 CST

ppa for ubuntu 打包 mariadb-10.4 for ubuntu 16.04 xenial

  • 0

是否有 ppa 或其他 repo 为 ubuntu 16.04 提供 mariadb 10.4 的 ubuntu 风格的包?

我正在尝试轻松地从 mariadb-10.0(服务器和客户端)升级一些虚拟机。

ppa 16.04 mariadb
  • 1 个回答
  • 121 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve