因此,我是在我的大学网络,这要求我登录到浏览器,然后我开始使用互联网。我成功地这样做了,但是在Ubuntu的干净安装上,当我尝试执行sudo apt update
时,我得到了以下输出:
$ sudo apt update
Get:1 http://in.archive.ubuntu.com/ubuntu xenial InRelease [2,847 B]
Err:1 http://in.archive.ubuntu.com/ubuntu xenial InRelease
Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [2,854 B]
Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease
...
Get:3 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease [2,855 B]
Err:3 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease
...
Get:4 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease [2,857 B]
Err:4 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease
Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
Fetched 11.4 kB in 0s (18.3 kB/s)
Reading package lists... Done
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
...
E: Some index files failed to download. They have been ignored, or old ones used instead.
但是当我做wget http://in.archive.ubuntu.com/ubuntu/dists/xenial/InRelease
时,我得到了输出的成功:
2017-04-01 05:34:57 http://in.archive.ubuntu.com/ubuntu/dists/xenial/InRelease
Resolving in.archive.ubuntu.com (in.archive.ubuntu.com)... 91.189.88.162, 91.189.88.149, 91.189.88.152, ...
Connecting to in.archive.ubuntu.com (in.archive.ubuntu.com)|91.189.88.162|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 246846 (241K)
Saving to: ‘InRelease.3’
InRelease.3 100%[===================>] 241.06K 110KB/s in 2.2s
2017-04-01 05:35:00 (110 KB/s) - ‘InRelease.3’ saved [246846/246846]
显然,我可以通过浏览器和wget
访问互联网,但是当我进行sudo apt
(或apt-get
)更新时,我会得到这个错误。
PS:这个问题与其他线程不同,因为它们的解决方案似乎不适用于我的线程。
wget -SO /dev/null http://in.archive.ubuntu.com/ubuntu/dists/xenial/InRelease
wget -SO /dev/null http://archive.ubuntu.com/ubuntu/dists/xenial/InRelease
正如我所发现的,这个问题只发生在我身上,而不是大学网络上的其他人身上。尽管按照指示建立了网络,但仍然会发生这种情况。如果能提供更多的帮助,我们将不胜感激。
编辑:所以事实证明,50%的人在大学里都面临着这个问题,而50%的人在上周之前对硬件没有任何问题,也没有进行适当的更新。感谢@大卫·福斯特一直以来对我的帮助。
就目前情况而言,这一问题已向我们学院的关系部提出:)
发布于 2017-07-11 13:36:52
结果是我们学院的网络后端出了问题。问题仍然存在,其他WiFi网络运行良好。
发布于 2017-05-23 17:51:05
我也有过同样的问题。原来apt-get使用/etc/apt/apt.conf
作为代理设置(我的浏览器设置已经设置)。使apt.conf
与我的浏览器代理设置匹配解决了这个问题。
/etc/apt$ cat apt.conf
Acquire::http::proxy "http://<proxy>";
Acquire::https::proxy "https://<proxy>";
Acquire::ftp::proxy "ftp://<proxy>";
Acquire::socks::proxy "socks:<proxy>";
发布于 2018-03-07 12:36:41
当你有这样的发行,首先确保DNS可以解决链接,L认为这是问题。
sudo vim /etc/resolv.conf
确保使用google:
nameserver 8.8.8.8
作为要检查的第一个名称服务器。重新启动networking.service
,您就可以开始了
https://askubuntu.com/questions/899009
复制相似问题