1、刷 Armbian:
直刷包下载地址:https://github.com/hzyitc/armbian-onecloud/releases
(建议下载*edge_*.burn.img.xz类型版本的线刷包,线刷步骤很简单,一条双公头数据线就可以,可以参考下其他大神的教程,这里就不做过都介绍 )
2、更换软件源:
mv /etc/apt/sources.list /etc/apt/sources.list.bk
nano /etc/apt/sources.list
添加:
deb https://mirrors.ustc.edu.cn/debian/ bullseye main non-free contribdeb-src https://mirrors.ustc.edu.cn/debian/ bullseye main non-free contribdeb https://mirrors.ustc.edu.cn/debian-security/ bullseye-security maindeb-src https://mirrors.ustc.edu.cn/debian-security/ bullseye-security maindeb https://mirrors.ustc.edu.cn/debian/ bullseye-updates main non-free contribdeb-src https://mirrors.ustc.edu.cn/debian/ bullseye-updates main non-free contribdeb https://mirrors.ustc.edu.cn/debian/ bullseye-backports main non-free contribdeb-src https://mirrors.ustc.edu.cn/debian/ bullseye-backports main non-free contrib
【Ctrl+O】保存、【Ctrl+X】退出
3、更新一下:
apt-get update && apt upgrade -y
4、安装 Docker:
#下载shcurl -fsSL https://get.docker.com -o get-docker.sh
#执行shsh get-docker.sh –mirror Aliyun
#这一步可能显得多余 但是我放这里肯定是有原因的 建议执行一下apt install docker.io
#更加推荐开关电源重启reboot
#验证一下是否安装成功docker - V#或者docker version#要没有报错才行哦,并不是说看到版本号就可以了
#安装docker可视面板docker run --restart always --name fast -p 8081:8081 -d -v /var/run/docker.sock:/var/run/docker.sock wangbinxingkong/fast#安装完成后验证一下:【网页IP+8081 账号:root 密码:1234】能打开网页就是可以了,如果不行建议关了电源再通电开机试一下
5、安装 OpenWRT
#打开网卡混杂模式ip link set eth0 promisc on
#创建网络:你的网络是多少段 X 就填多少,其他的数字不要乱改!docker network create -d macvlan --subnet=192.168.X.0/24 --gateway=192.168.X.1 -o parent=eth0 macnet
#拉取镜像docker pull jyhking/onecloud:1.1
#然后配置一下docker run -itd --name=OneCloud --restart=always --network=macnet --privileged=true jyhking/onecloud:1.1 /sbin/init#路由后台查看openwrt的ip地址->直接网页登陆IP 【账号:root 密码:password】
6、教程结束,其实就这么简单
其他安装之后需要具体配置哪些东西可以参考论坛其他大神的教程,这个教程很多,本人小白啥也不会,如有不当之处,欢迎各位路过的大神多多提点,感谢感谢!
来源地址:https://blog.csdn.net/hj1837808925/article/details/129766400