博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu中无法update的解决办法
阅读量:5897 次
发布时间:2019-06-19

本文共 3283 字,大约阅读时间需要 10 分钟。

我输入 sudo apt-get update 出现错误:

/etc/apt$ sudo apt-get updateErr http://security.ubuntu.com precise-security InReleaseErr http://security.ubuntu.com precise-security Release.gpg  Temporary failure resolving 'security.ubuntu.com'Err http://cn.archive.ubuntu.com precise InReleaseErr http://cn.archive.ubuntu.com precise-updates InReleaseErr http://cn.archive.ubuntu.com precise-backports InReleaseErr http://cn.archive.ubuntu.com precise Release.gpg  Temporary failure resolving 'cn.archive.ubuntu.com' Err http://cn.archive.ubuntu.com precise-updates Release.gpg Temporary failure resolving 'cn.archive.ubuntu.com' Err http://cn.archive.ubuntu.com precise-backports Release.gpg Temporary failure resolving 'cn.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise/InRelease W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise-updates/InRelease W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise-backports/InRelease W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/precise-security/InRelease W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/precise-security/Release.gpg Temporary failure resolving 'security.ubuntu.com' W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise/Release.gpg Temporary failure resolving 'cn.archive.ubuntu.com' W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise-updates/Release.gpg Temporary failure resolving 'cn.archive.ubuntu.com' W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise-backports/Release.gpg Temporary failure resolving 'cn.archive.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. xinju@xinjuOffice:/etc/apt$ cd ../network

(错误当时没有记录下来上网找到了同样错误的提示!)

——-下面我们就一起讨论下这个情况!

所有停止维护的版本都可以使用old源。所以在元列表中把原来的地址改为带有old源的就可以了。

首先,备份系统中的源列表,打开终端,输入

sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup

这里写图片描述

4.输入

sudo gedit /etc/apt/sources.list
打开源列表文件,ctrl+A,然后delete,删除全部内容
然后把下面的地址复制到该文件中:

deb http://old-releases.ubuntu.com/ubuntu utopic main restricted universe multiversedeb http://old-releases.ubuntu.com/ubuntu utopic-security main restricted universe multiversedeb http://old-releases.ubuntu.com/ubuntu utopic-updates main restricted universe multiverse deb http://old-releases.ubuntu.com/ubuntu utopic-proposed main restricted universe multiverse deb http://old-releases.ubuntu.com/ubuntu utopic-backports main restricted universe multiverse deb-src http://old-releases.ubuntu.com/ubuntu utopic main restricted universe multiverse deb-src http://old-releases.ubuntu.com/ubuntu utopic-security main restricted universe multiverse deb-src http://old-releases.ubuntu.com/ubuntu utopic-updates main restricted universe multiverse deb-src http://old-releases.ubuntu.com/ubuntu utopic-proposed main restricted universe multiverse deb-src http://old-releases.ubuntu.com/ubuntu utopic-backports main restricted universe multiverse

这里写图片描述

5.需要注意的是上面地址中的 utopic是ubuntu系统版本的名称,我的ubuntu系统是14.10,对应的版本名称是utopic。只要把这里的utopic换车你自己系统版本的名称即可,如果不知道版本名称的话,可以运行以下命令获得

lsb_release -a
其中,Codename就是了。

这里写图片描述

6.保存好源列表文件后,进入到终端,一定要再输入以下命令

sudo apt-get update
来进行更新,会看到没有失败的提示了,转而出现“命中,获取中”等字眼。
这里写图片描述

这里写图片描述

本文为转载,出处为图片 上的网址。

 

转载于:https://www.cnblogs.com/jyxbk/p/8352210.html

你可能感兴趣的文章
2017-10-9linux文本处理
查看>>
CALayer的那些事(二)
查看>>
[C语言]unicode与utf-8编码转换(一)
查看>>
root用户可以引入cx_Oracle包,其他用户不可以导入
查看>>
Linux防火墙iptables学习笔记(二)参数指令
查看>>
Prometheus监控的最佳实践——关于监控的3项关键指标
查看>>
单向的1:n
查看>>
旧电脑如何华丽变身专业上网行为管理设备!
查看>>
linux进程管理及kill命令详解
查看>>
oracle的查询结果按照in条件顺序输出
查看>>
PHP 打印函数之 print print_r
查看>>
学生信息管理系统分析和感想
查看>>
__set魔术方法可不可以加private属性
查看>>
MySQL 4种事务的隔离级别
查看>>
跟我一起学docker(13)--docker Machine的使用
查看>>
有关Java字符编码的一些问题
查看>>
二:Unit 4
查看>>
影响英语单词拼写的6大因素
查看>>
计算机硬件基础知识
查看>>
SQLServer删除/重建/禁用/启用外键约束
查看>>