ubuntu apt-get 报错 Failed to fetch http://
2021/5/14 7:25:47
本文主要是介绍ubuntu apt-get 报错 Failed to fetch http://,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
网络上的解决方案大致有两个,我都用了,最后问题解决了。不太清楚是那个方法解决问题的。
方法一:修改DNS服务器
vim /etc/resolv.conf
然后添加:
nameserver 8.8.8.8 nameserver 8.8.4.4
阿里源的再添加:
nameserver 223.5.5.5 nameserver 223.6.6.6
最后运行
apt-get update
可能会有一些找不到,先别管,然后接着再apt-get install
下载文件实施。
如果不行,尝试方法二。
方法二:更换apt源
vim /etc/apt/sources.list
可以把之前的都注释调,然后添加:
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse ##测试版源 deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse # 源码 deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse ##测试版源 deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse # Canonical 合作伙伴和附加 deb http://archive.canonical.com/ubuntu/ xenial partner
保存关闭。
apt-get update
然后再下载试试。
这篇关于ubuntu apt-get 报错 Failed to fetch http://的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享