linux_pve_lxc_openwrt
Proxmox VE 手动创建Openwrt LXC容器
首先下载需要使用root文件,下载地址 https://downloads.openwrt.org/releases/23.05.5/targets/x86/64/,选取其中的rootfs.tar.gz
这里我使用23.05.5,使用wget命令下载后执行如下命令创建LXC容器,110是容器的编号,/root/openwrt-23.05.5-x86-64-rootfs.tar.gz是下载的镜像位置,local-zfs为存储库位置,local-zfs:1意思系统大小为1G
#pct create 110 /root/openwrt-23.05.5-x86-64-rootfs.tar.gz –arch amd64 –hostname OpenWrt –rootfs local-zfs:1 –memory 256 –cores 1 –ostype unmanaged –unprivileged 1
root@pve:~# pct create 110 /root/openwrt-23.05.5-x86-64-rootfs.tar.gz --arch amd64 --hostname OpenWrt --rootfs local-zfs:1 --memory 256 --cores 1 --ostype unmanaged --unprivileged 1 extracting archive '/root/openwrt-23.05.5-x86-64-rootfs.tar.gz' Total bytes read: 11827200 (12MiB, 85MiB/s)
这样子就创建好了,自己再进去管理界面进行添加网卡等自定义修改。
参考资料:https://community.bigbeartechworld.com/t/setting-up-openwrt-on-a-virtual-machine-with-proxmox/257
linux_pve_lxc_openwrt.txt · 最后更改: 2024/10/31 15:31 由 packingbox