更新期间出错“无法连接到 192.168.43.1:8000”

更新期间出错“无法连接到 192.168.43.1:8000”

当我尝试通过更新管理器更新我的 Ubuntu 时,我收到有关某些未知资源的错误。所以我尝试从终端执行此操作

sudo apt-get update

但我得到的是:

0% [Connecting to 192.168.43.1

重复...当我按下 Enter 键时,它显示:

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-security/universe/i18n/Translation-en  Unable to connect to 192.168.43.1:8000:

E: Some index files failed to download. They have been ignored, or old ones used instead.

我怎样才能让它工作?

答案1

由于是私有 IP 范围,因此看起来apt被配置为使用代理。192.168.*.*

使用下一个命令列出包含/etc/apt以下内容的所有文件192.168.43.1

grep -rlF 192.168.43.1 /etc/apt

它可能会打印/etc/apt/apt.conf。打开该文件。找到包含代理配置的行并将其删除:

Acquire::http::Proxy "http://192.168.43.1:8000/";

保存并再次尝试更新:

sudo apt-get update

相关内容