|
简述
Armbain默认使用的是国外的软件源,但是速度很慢,安装软件下载速度韩漫,所以我们需要更换为国内源
切换清华官方Armbian源
帮助文档地址
可以使用以下方法更换软件源:
运行 armbian-config -> Personal -> Mirrors -> 选择镜像站。
编辑 /etc/apt/sources.list.d/armbian.list,将 http://apt.armbian.com 替换为以下链接
- https://mirrors.tuna.tsinghua.edu.cn/armbian
复制代码 然后执行 apt update。
这可以由以下命令完成
- sed -i.bak 's#http://apt.armbian.com#https://mirrors.tuna.tsinghua.edu.cn/armbian#g' /etc/apt/sources.list.d/armbian.list
- apt update
复制代码
|
|