armbian stretch更换国内源

FX的N1中刷入armbian

uname -a

linux aml 5.0.2-aml-s905 #5.77 SMP PREEMPT Mon Apr 1 17:41:33 MSK 2019 aarch64 GNU/Linux

更换国内源,与debian不同,发现清华源有不少缺失,没有找到适合的阿里源,中科大源能够比较好的进行更新,不同源的维护不一样啊,源服务器不是简单的镜像。

nano /etc/apt/sources.list

点击查看代码
deb http://mirrors.ustc.edu.cn/debian stretch-updates main contrib non-free
deb http://mirrors.ustc.edu.cn/debian stretch-backports main contrib non-free
deb http://mirrors.ustc.edu.cn/debian-security/ stretch/updates main contrib non-free

不需要查看和编译就不需要填写deb-src源,可注释掉,然后就更新吧

apt-get update
apt-get upgrade

PS:
update和upgrade的区别——
update 是更新 /etc/apt/sources.list 和 /etc/apt/sources.list.d 中列出的源的地址,这样才能获取到最新的软件包

upgrade 是升级已安装的所有软件包,升级之后的版本就是本地地址里的,因此,在执行 upgrade 之前一定要执行 update, 这样才能更新到最新的

上一篇:Mysql报Deadlock found when trying to get lock; try restarting transaction问题解决


下一篇:mybatis batch update mysql_mybatis执行批量更新batch update 的方法(oracle,mysql两种)