Armbian换源
由于某些原因,大陆访问Armbian速度非常感人,所以要换源,不然一个apt update都要等半天。
目前常用的大陆Armbian源有
清华大学源
https://mirrors.tuna.tsinghua.edu.cn/help/armbian
和中科大源
这里使用清华大学源进行演示,如需其他源请自行搜索
Armbian换源需要编辑,”armbian.list”和”sources.list”
Armbian换源(armbian.list)
使用命令修改Armbian源
在命令行输入以下命令
sed -i.bak 's#http://apt.armbian.com#https://mirrors.tuna.tsinghua.edu.cn/armbian#g' /etc/apt/sources.list.d/armbian.list
然后就修改成功了
手动修改Armbian源
如果不行的话可以尝试手动修改,这里使用nano修改,在命令行输入以下命令
nano /etc/apt/sources.list.d/armbian.list
无法打开文件?,可能是因为没有安装nano,运行以下命令安装nano
apt install nano
打开文件后,将其中的”http://apt.armbian.com“改成“https://mirrors.tuna.tsinghua.edu.cn/armbian”
就像这样
#示例
#修改前
deb http://apt.armbian.com bullseye main bullseye-utils bullseye-desktop
#修改后
deb https://mirrors.tuna.tsinghua.edu.cn/armbian bullseye main bullseye-utils bullseye-desktop
完事后按“Ctrl+X”,它可能会问你“Save modified buffer?”输入“y“继续,然后它可能还会问”File Name to Write: armbian.list”回车保存退出
然后就修改成功了
Armbian换源(sources.list)
确认你的Armbian的版本
首先使用SSH连接到Armbian
欢迎页面的第一行中的”Bullseye“就是Armbian的版本了,搜索一下可以得知我的Armbian是”Debian 11 Bullseye”版本的
清华大学Debian源
https://mirrors.tuna.tsinghua.edu.cn/help/debian
清华大学Ubuntu Ports源
https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu-ports
由于我的Armbian版本是”Debian 11 Bullseye”所以是用Debian源,如果你是Ubuntu版本的请使用”Ubuntu Ports”源,不是Ubuntu源
打开清华大学Debian源
红框选择你的版本,然后复制黑框的内容,因为我是”Bullseye”版本的所以选Debian 11 (Bullseye)
修改sources.list
这里使用nano修改,在命令行输入以下命令
nano /etc/apt/sources.list
无法打开文件?,可能是因为没有安装nano,运行以下命令安装nano
apt install nano
打开文件后删除里面的所有内容,把刚才复制的清华源粘贴进去,完事后按“Ctrl+X”,它可能会问你“Save modified buffer?”输入“y“继续,然后它可能还会问”File Name to Write: sources.list”回车保存退出
然后,输入以下命令更新链接
apt update
Armbian换源完成