Linux - Ubuntu下执行apt-get update报错:Some index files failed to download. They have been ignored, or old ones used instead.

报错命令

root@ubuntu:/etc/apt# apt-get update
Err:1 http://mirrors.aliyun.com/ubuntu trusty InRelease
  Could not resolve 'mirrors.aliyun.com'
Err:2 http:mirrors.aliyun.com/ubuntu trusty-backports InRelease
  Could not resolve 3 http:mirrors.aliyun.com/ubuntu trusty-proposed InRelease
  Could not resolve 4 http:mirrors.aliyun.com/ubuntu trusty-security InRelease
  Could not resolve 5 http:mirrors.aliyun.com/ubuntu trusty-updates InRelease
  Could not resolve 
Reading package lists... Done
W: Failed to fetch http:mirrors.aliyun.com/ubuntu/dists/trusty/InRelease  Could not resolve 'mirrors.aliyun.com'
W: Failed to fetch http:mirrors.aliyun.com/ubuntu/dists/trusty-backports/InRelease  Could not resolve 'mirrors.aliyun.com'
W: Failed to fetch http:mirrors.aliyun.com/ubuntu/dists/trusty-proposed/InRelease  Could not resolve 'mirrors.aliyun.com'
W: Failed to fetch http:mirrors.aliyun.com/ubuntu/dists/trusty-security/InRelease  Could not resolve 'mirrors.aliyun.com'
W: Failed to fetch http:mirrors.aliyun.com/ubuntu/dists/trusty-updates/InRelease  Could not resolve 'mirrors.aliyun.com'
W: Some index files failed to download. They have been ignored,or old ones used instead.

 

报错原因

解析域名不对

 

解决方案

vim /etc/systemd/resolved.conf

dns改成8.8.8.8

 

 

保存,重启机器即可

 

相关文章

linux常用进程通信方式包括管道(pipe)、有名管道(FIFO)、...
Linux性能观测工具按类别可分为系统级别和进程级别,系统级别...
本文详细介绍了curl命令基础和高级用法,包括跳过https的证书...
本文包含作者工作中常用到的一些命令,用于诊断网络、磁盘占满...
linux的平均负载表示运行态和就绪态及不可中断状态(正在io)的...
CPU上下文频繁切换会导致系统性能下降,切换分为进程切换、线...