下载OpenWrt系统

下载完后解压,并上传到PVE系统中

Untitled

OpenWrt系统PVE VM创建

一下是我这边创建的配置信息,硬盘先不需要添加。

Untitled

如果需要扩容

参考链接: https://dickies.myds.me:56789/st/routeos/1024/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
apt-get install parted

// 添加5G的空余空间
dd if=/dev/zero bs=1G count=5 >> /var/lib/vz/template/iso/immortalwrt-23.05.4.img

// 执行分区命令:
parted /var/lib/vz/template/iso/immortalwrt-23.05.4.img

// 使用print命令查看当前镜像包的分区情况
root@pve:~# parted /var/lib/vz/template/iso/immortalwrt-23.05.4.img
GNU Parted 3.5
Using /var/lib/vz/template/iso/immortalwrt-23.05.4.img
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: (file)
Disk /var/lib/vz/template/iso/immortalwrt-23.05.4.img: 2496MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number Start End Size File system Name Flags
128 17.4kB 262kB 245kB bios_grub
1 262kB 33.8MB 33.6MB fat16 legacy_boot
2 33.8MB 2496MB 2462MB

(parted)

// 可以看到分区2是镜像包默认的分区空间,下面我们使用命令将刚才增加的5GB空数据整合进这个分区
resizepart 2 100%

// 在升级的时候,记得也要对升级包进行一次扩容,再打包成gz压缩包,再做升级。打包命令如下
gzip immortalwrt-23.05.4.img

通过固件img 倒入硬盘

1
2
3
4
5
6
7
8
# 101 vm号 
# /var/lib/vz/template/iso/openwrt_esir.img pve中上传的img文件
# qm importdisk 109 /var/lib/vz/template/iso/immortalwrt.img local-lvm

qm importdisk 101 /var/lib/vz/template/iso/openwrt_esir.img local-lvm

qm importdisk 106 /var/lib/vz/template/iso/immortalwrt-23.05.4.img local-lvm

导入成功后需要设置一下硬盘的格式,选择 SCSI 格式。

Pasted image 20240329232829.png

扩充一下磁盘空间,必须在第一次启动之前操作,这里扩充了2GB后续用于安装插件。
image.png

在Options选项中选择启动顺序:把stat0移动到第一位并打勾。

所有设置完后,启动虚拟机。

设置虚拟的IP地址:

1
2
3
nano /etc/config/network
// 没有 nano 命令使用 vi 命令操作
vi /etc/config/network

Untitled

在浏览器中访问,你设置的IP地址就可以了,登陆账号:root 密码为空。

软件包安装

对于纯净的OpenWrt 系统,需要安装一些必要的软件包。前提你配置好了网络,有网环境。

image.png

常用软件包地址:地址

软件名 功能 下载地址 Github地址
lucl-theme-argon 主题 https://github.com/jerrykuku/luci-theme-argon
luci-app-vlmcsd KMS 激活工具 https://github.com/cokebar/openwrt-vlmcsd
luci-i18n-ttyd-zh-cn 命令行工具 https://github.com/openwrt/luci/tree/openwrt-22.03/applications/luci-app-ttyd
mosdns DNS工具 // 安装
opkg update
opkg install curl
sh -c “$(curl -ksS https://raw.githubusercontent.com/sbwml/luci-app-mosdns/v5/install.sh)”
https://github.com/sbwml/luci-app-mosdns
luci-app-zerotier 网络工具 https://github.com/rufengsuixing/luci-app-zerotier
luci-app-openclash 科学上网工具 https://github.com/vernesong/OpenClash
luci-i18n-passwall-zh-cn 科学上网工具 https://github.com/xiaorouji/openwrt-passwall
luci-i18n-homeproxy-zh-cn 科学上网工具 https://github.com/douglarek/luci-app-homeproxy
luci-app-lucky Lucky DDNS工具 https://github.com/gdy666/luci-app-lucky/releases https://github.com/gdy666/luci-app-lucky?tab=readme-ov-file
luci-app-wol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opkg update
opkg install curl
sh -c "$(curl -ksS https://raw.githubusercontent.com/sbwml/luci-app-mosdns/v5/install.sh)"

opkg install luci-theme-argon
opkg install luci-app-ttyd
opkg install luci-app-vlmcsd
opkg install luci-app-wol
opkg install luci-app-zerotier
opkg install luci-i18n-passwall-zh-cn
opkg install luci-app-openclash
opkg install luci-i18n-ttyd-zh-cn
opkg install luci-i18n-homeproxy-zh-cn
opkg install luci-i18n-ddns-go-zh-cn
opkg install luci-app-upnp
chmod 755 /etc/ddns-go

# 更新软件包源
opkg update

# 在线包
https://op.dllkids.xyz/packages/
# passwall
https://github.com/xiaorouji/openwrt-passwall/releases

# 仅更新LuCI相关软件包
opkg list-upgradable | grep luci- | cut -f 1 -d ' ' | xargs opkg upgrade

# 更新全部可更新软件包,包含OpenWRT内核等
opkg list-upgradable | cut -f 1 -d ' ' | xargs opkg upgrade

上网配置

image.png

IPV6配置

image.png