斐讯盒子N1-docker 入门一
一、斐讯N1盒子可以在拼多多上买二、刷机教程网上有很多,我这里刷了armbian系统三、刷机完成后开始安装docker(1)更新下载源vi etc/apt/sources.listdeb [arch=arm64] https://mirrors.tuna.tsinghua.edu.cn/debian buster main contrib non-freedeb [arch=arm64] http
·
一、斐讯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
更多推荐
已为社区贡献2条内容
所有评论(0)