赞
踩
一、斐讯N1盒子可以在拼多多上买
二、刷机教程网上有很多,我这里刷了armbian系统
三、刷机完成后开始安装docker
(1)更新下载源
vi etc/apt/sources.list
- deb [arch=arm64] https://mirrors.tuna.tsinghua.edu.cn/debian buster main contrib non-free
- deb [arch=arm64] https://mirrors.tuna.tsinghua.edu.cn/debian buster-updates main contrib non-free
- deb [arch=arm64] https://mirrors.tuna.tsinghua.edu.cn/debian buster-backports main contrib non-free
- deb [arch=arm64] https://mirrors.tuna.tsinghua.edu.cn/debian-security/ buster/updates main contrib non-free
apt clean & apt update
(2)、删除老版本的docker
apt-get remove docker docker-engine docker.io containerd runc
(3)、安装依赖包
- apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
- curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
(4)、添加docker软件源
- add-apt-repository \
- "deb [arch=arm64] https://download.docker.com/linux/debian \
- $(lsb_release -cs) \
- stable"
(5)、安装docker
- apt update
- apt-get install docker-ce docker-ce-cli containerd.io
(6)、下一篇制作openwrt镜像,通过docker跑openwrt
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。