当 GETDEB 存储库关闭时我该怎么办?

13e*_*ast 12 package-management repository

我正在尝试从 getdeb 存储库安装程序/文件,但出现“检查您的互联网连接”错误。我尝试过的程序包括 Qbittorrent 和 Mozilla-Plugin-VLC。

通过终端,我收到以下错误:

Err http://archive.getdeb.net/ubuntu/ natty-getdeb/apps qbittorrent amd64 2.8.2-1~getdeb2
  Could not connect to archive.getdeb.net:80 (209.105.191.78). - connect (113: No route to host)
E: Failed to fetch http://archive.getdeb.net/ubuntu/pool/apps/q/qbittorrent/qbittorrent_2.8.2-1~getdeb2_amd64.deb: Could not connect to archive.getdeb.net:80 (209.105.191.78). - connect (113: No route to host)
Run Code Online (Sandbox Code Playgroud)

&

Err http://archive.getdeb.net/ubuntu/ natty-getdeb/apps mozilla-plugin-vlc amd64 1.1.10-1~getdeb1
  Could not connect to archive.getdeb.net:80 (209.105.191.78). - connect (113: No route to host)
E: Failed to fetch http://archive.getdeb.net/ubuntu/pool/apps/v/vlc/mozilla-plugin-vlc_1.1.10-1~getdeb1_amd64.deb: Could not connect to archive.getdeb.net:80 (209.105.191.78). - connect (113: No route to host)
Run Code Online (Sandbox Code Playgroud)

从我的机器添加/删除其他程序/文件我没有任何问题。GETDEB repo 是否有问题(如果有,有没有办法在我这边修复它)或者我的计算机配置有问题吗?

Tak*_*kat 19

2019:再次下跌(可能永远)

以前的 getdeb 项目页面不再与 getdeb 存储库相关。随着他们的Google+ 帐户在 2019 年到期,有迹象表明 GetDeb 最终不复存在。

2013 年:GetDeb 已经有一段时间不存在了

不幸的是,由于电源故障导致数据完全丢失,GetDeb 和 PlayDeb 项目都停止了。

在服务器崩溃之后,GetDeb 和 PlayDeb 数据库也丢失了,并且考虑到 GetDeb 和 PlayDeb 现在有太多的包需要作为一个人的项目来处理,我决定停止使用 GetDeb 和 PlayDeb。Google+ 上的 GetDeb.net 2013 年 1 月 18 日

它可能会在 2013 年暂时恢复

最近 getdeb 和 playdeb 存储库从备份中重新启用,应该像以前一样运行。

幸运的是,我们最后确实有旧服务器的最新备份。最后几天我忙着准备一切。站点再次启动,您应该能够浏览包(不应丢失任何包)以及像往常一样使用存储库。 Google+ 上的 GetDeb.net 2013 年 2 月 3 日

如果我仍然有问题,或者它再次关闭怎么办

由于服务器问题或缺乏支持,存储库可能会再次关闭一段时间。然后我们应该禁用他们的存储库并耐心等待,直到他们可以再次运行。注意他们的项目页面上的新闻或来自Google+ 中 getdeb 的帖子。


fos*_*dom 13

PlayDeb 确实有一个镜像,您可以将其添加到您的软件源中

当主要的getdeb存储库长时间脱机时,我使用了这个解决方案。

与所有镜像一样 - 没有同时激活镜像和实际站点 - 勾选任一但不能同时勾选。

如何

添加以下软件源:

deb http://mirrors.dotsrc.org/getdeb/ubuntu lucid-getdeb apps
deb-src http://mirrors.dotsrc.org/getdeb/ubuntu lucid-getdeb apps
Run Code Online (Sandbox Code Playgroud)

然后通过在终端中复制和粘贴以下内容来获取软件源密钥:

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com A8A515F046D7E7CF
sudo apt-get update
Run Code Online (Sandbox Code Playgroud)

NB

  1. 更改lucid-getdeb你的发行版的名字,maverick-getdebnatty-getdeboneiric-getdebprecise-getdebquantal-getdeb

  2. 您还可以通过添加相同的两行来使用游戏镜像仓库,只需更改appsgames

来源

  • 谢谢!现在 getdeb.net 已关闭三天或更长时间。所以我在 /etc/apt/sources 中将 `deb http://archive.getdeb.net/ubuntu xenial-getdeb apps` 改为 `deb http://mirrors.dotsrc.org/getdeb/ubuntu xenial-getdeb apps` .list.d/getdeb.list` 在我的 Ubuntu Xenial 上。 (2认同)