虽然backports源在zero w(ARMV6)上也不能使用,还是记录一下。
添加这两个源到
/etc/apt/sources.list
或
/etc/apt/sources.list.d/**.list
deb http://ftp.debian.org/debian jessie-backports main
deb http://ftp.debian.org/debian stretch-backports main
apt-get update
发现有gpg key错误,添加这两个key。sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com 8B48AD6246925553
sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com 7638D0442B90D010
报没有安装dirmngr的错误,
sudo apt-get install dirmngr
(之前换了国内源会产生依赖冲突,让卸载apt,搞了半天。(╯‵□′)╯炸弹!•••*~●)
再次添加,然后又报server错误,猜测dns问题,挂代理、指定ip,各种尝试后还是不行。
直接从网页查询获得key
http://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x8B48AD6246925553
,后面的8B48AD6246925553就是上面要添加的key值,复制
—–BEGIN PGP PUBLIC KEY BLOCK—–
开始的部分到文件,
sudo apt-key add ***.gpg
。