在一个老版本的debian上使用apt-get update的时候,出现报错,本以为是我挂梯,结果发现并不是、、、
报错如下:

.......
E: Repository 'http://security.debian.org/debian-security buster/updates InRelease' changed its 'Suite' value from 'stable' to 'oldstable'
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.

解决办法其实很简单,在apt-get update后添加一个--allow-releaseinfo-change即可解决,一次不行就再执行几次,最后会成功的。

apt-get update --allow-releaseinfo-change

如果不是root用户就加上sudo 这个不用多说吧。

sudo apt-get update --allow-releaseinfo-change