“http://ubuntu/ubuntu”(在 apt sources.list 中)在哪里定义?

“http://ubuntu/ubuntu”(在 apt sources.list 中)在哪里定义?

在我的客户的托管服务提供商提供的最近的服务器中,该/etc/apt/sources.list文件包含对以下内容的引用:

deb http://ubuntu/ubuntu/ xenial main restricted
...
deb http://ubuntu-secu/ubuntu xenial-security multiverse

而以前的服务器包含我经常看到的几行:

deb http://fr.archive.ubuntu.com/ubuntu/ xenial main restricted
...
deb-src http://security.ubuntu.com/ubuntu/ xenial-security multiverse

这个特定的 URL 似乎无法解析,但升级似乎有效。

这是 Ubuntu 自己提供的吗?

如果不是,那么如何解释?在哪里可以定义?

答案1

我想我发现了:提供商已经在以下位置设置了一个适当的代理/etc/apt/apt.conf

Acquire::http {
          Proxy "http://xxx.the-provider.com:1234";
};

这样好像就明白了http://ubuntu/ubuntu

谢谢https://serverfault.com/users/38644/gerald-schneider提示!

相关内容