Ubuntu apt-get update 失败
Posted 请给我倒杯茶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu apt-get update 失败相关的知识,希望对你有一定的参考价值。
本文转载自:http://www.jianshu.com/p/0de2b5717ce8
1 $ sudo apt-get update
报了一堆错误:
Err http://cn.archive.ubuntu.com trusty InRelease
Err http://cn.archive.ubuntu.com trusty-updates InRelease
Err http://cn.archive.ubuntu.com trusty-backports InRelease
Err http://cn.archive.ubuntu.com trusty Release.gpg
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/trusty/InRelease
解决方案: 修改DNS
sudo vi /etc/resolvconf/resolv.conf.d/base
在里面插入:
nameserver 8.8.8.8
nameserver 8.8.4.4
修改好保存!wq,
然后执行
$ sudo resolvconf -u
再看 /etc/resolv.conf,最下面就多了2行:
$ cat /etc/resolv.conf
显示
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 8.8.4.4
此时执行
$ sudo apt-get update
可以运行,然后就可以使用sudo apt-get install **指令了。
以上是关于Ubuntu apt-get update 失败的主要内容,如果未能解决你的问题,请参考以下文章
一般都是源的问题ubuntu使用apt-get update更新失败
VM虚拟机中Ubuntu中执行apt-get update失败的解决方法(可能有效)
Ubuntu系统 apt-get update失败,出现“Certificate verification failed ”错误以及“无法安全地用该源进行更新“等问题解决办法