我试图修复 Ubuntu 20.04 中的互联网连接问题。我的 Firefox 无法正常工作。运行 Sudo apt-get update 后出现错误。
- 错误:1http://au.archive.ubuntu.com/ubuntufocal InRelease 暂时无法解析‘au.archive.ubuntu.com’ Err:2 http://au.archive.ubuntu.com/ubuntufocal-updates InRelease 暂时无法解析‘au.archive.ubuntu.com’ Err:3 http://au.archive.ubuntu.com/ubuntufocal-backports InRelease 暂时无法解析‘au.archive.ubuntu.com’ Err:4 http://security.ubuntu.com/ubuntufocal-security InRelease 暂时无法解析“security.ubuntu.com” 正在读取软件包列表... 完成 W:无法获取 http://au.archive.ubuntu.com/ubuntu/dists/focal/InRelease暂时无法解析“au.archive.ubuntu.com”W:无法获取 http://au.archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease 暂时无法解析“au.archive.ubuntu.com”W:无法获取 http://au.archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease 暂时无法解析“au.archive.ubuntu.com”W:无法获取 http://security.ubuntu.com/ubuntu/dists/focal-security/InRelease 暂时无法解析“security.ubuntu.com” W: 某些索引文件下载失败。它们已被忽略,或使用旧文件代替。
我在论坛上找到了一些关于这个问题的帖子。我尝试使用:sudo echo nameserver 8.8.8.8 > /etc/resolv.conf。但它不起作用,并显示 bash: /etc/resolv.conf: 没有这样的文件或目录。显然,有一个名为 /etc/resolv.conf 的空文件夹。我最终在 resolv.conf.save 中添加了 #nameserver 8.8.8.8,但我无法将其保存在 resolv.conf 下。这些是我在 /etc 下得到的文件。非常感谢
- resolv.conf
resolv.conf.保存
resolv.conf.save.1
答案1
首先,您需要删除 resolv.conf,无论它是文件还是目录。如果您认为它是您在帖子中提到的文件夹,请尝试sudo rm -rf resolv.conf
。如果它是符号链接文件,请执行sudo rm -f /etc/resolv.conv
。然后使用编辑您刚刚创建的文件sudo echo 8.8.8.8 > /etc/resolv.conf
。这应该可以解决您的问题。