解决Debian更新源出错以及"There is no public key available"问题

一般我们再购买和开通Linux VPS主机之后,登入SSH首先需要做的肯定是更新当前服务器的源安装包,这样可以确保服务器的最新安全补丁最新,而且在编译安装软件的时候可以确保软件的最新版本。今天老蒋在Debian6系统中update更新源的时候出现错误无法更新。

第一、Debian更新源错误提示

W: Failed to fetch http://http.debian.net/debian/dists/squeeze/main/binary-i386/Packages.gz 404 Not Found [IP: 149.20.37.36 80] E: Some index files failed to download, they have been ignored, or old ones used instead.

出现这样的问题应该是服务器获取不到Debian更新包的文件导致的,我们解决方法就是将服务器的安装源包更新。

Debian更新源错误提示

第二、Debian更新源安装包

/etc/apt/sources.list

将这个文件内容:

deb http://mirrors.aliyun.com/debian wheezy main contrib non-free
deb-src http://mirrors.aliyun.com/debian wheezy main contrib non-free
deb http://mirrors.aliyun.com/debian wheezy-updates main contrib non-free
deb-src http://mirrors.aliyun.com/debian wheezy-updates main contrib non-free
deb http://mirrors.aliyun.com/debian-security wheezy/updates main contrib non-free
deb-src http://mirrors.aliyun.com/debian-security wheezy/updates main contrib non-free

这里我们将原来的源更新成阿里云的包。更新保存之后,我们再执行apt-get update -y,一般这样就没有问题。

第三、解决There is no public key available错误

W: There is no public key available for the following key IDs:7638D0442B90D010
W: There is no public key available for the following key IDs:7638D0442B90D010
W: There is no public key available for the following key IDs:9D6D8F6BC857C906

但是,老蒋这边更新源之后,执行升级命令还出现错误。

apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 7638D0442B90D010
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 7638D0442B90D010
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 9D6D8F6BC857C906

根据我们服务器的报错ID提示,我们分别执行更新KEY命令3条。

解决There is no public key available错误

第四、执行更新命令

apt-get update -y

最后,我们再重新执行更新命令,更新源就没有问题。

投上你的一票

本文出处:老蒋部落 » 解决Debian更新源出错以及"There is no public key available"问题 | 欢迎分享( 公众号:老蒋朋友圈 )

公众号 「老蒋朋友圈」获取站长新知 / 加QQ群 【1012423279】获取商家优惠推送