Last active 1775644300

create_owrt.sh Raw
1#!/bin/sh
2
3set -e
4
5echo '----------Create Openwrt VM!----------'
6
7wget https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-rootfs.tar.gz -O /var/lib/vz/template/cache/openwrt-24.10.5-x86-64-rootfs.tar.gz
8pct create 190 local:vztmpl/openwrt-24.10.5-x86-64-rootfs.tar.gz --hostname openwrt --rootfs local:1 --memory 256 --cores 1 --ostype unmanaged --unprivileged 1
9
10echo '----------Create DONE!----------'
11