云服务器docker的更新失败解决方法

docker的更新失败解决方法

    • 1、apt-get update更新失败
    • 2、解决方法
    • 3、永久性的添加DNS服务·
    • 4、源
    • 补充

1、apt-get update更新失败


Err http://archive.canonical.com natty InRelease    
Err http://security.ubuntu.com oneiric-security InRelease               
Err http://extras.ubuntu.com natty InRelease                            
Err http://security.ubuntu.com oneiric-security Release.gpg

2、解决方法

暂时解决问题,就是添加一个DNS服务到系统内,在root用户下使用命令

echo "nameserver 8.8.8.8" |  tee /etc/resolv.conf > /dev/null

然后运行sudo apt-get update就可以使用了

3、永久性的添加DNS服务·

echo "nameserver 8.8.8.8" |  tee /etc/resolvconf/resolv.conf.d/base > /dev/null

8.8.8.8 是 Google’s 自己的 DNS服务。

4、源

使用开放的DNS
eg:

echo "nameserver 208.67.222.222" | sudo tee /etc/resolvconf/resolv.conf.d/base > /dev/null

打开命令行

nano /etc/apt/sources.list

查找列表中具有与您预期不同的发行版名称的行——oneiric,还有一个natty
eg:deb http:/archive.canonical.com/ natty backports
修改为#deb http:/archive.canonical.com/ natty backports然后保存并运行命令:

 apt-get update &&  apt-get upgrade

就这些。

补充

另一种方法:
进入/etc/resolv.conf。修改内容为下

nameserver 8.8.8.8 #google域名服务器
nameserver 8.8.4.4 #google域名服务器

加上自己的域名服务器

你可能感兴趣的:(嵌入式,云服务器,ubuntu,linux)