/imgs/avatar.webp

Codee的博客

openwrt编译v2raya并设置负载均衡

1 添加软件源找到这个列表 https://github.com/kenzok8/openwrt-packages 执行 1 2 3 4 5 6 sed -i '$a src-git kenzo https://github.com/kenzok8/openwrt-packages' feeds.conf.default sed -i '$a src-git small https://github.com/kenzok8/small' feeds.conf.default git pull ./scripts/feeds update -a ./scripts/feeds install -a make menuconfig 选择luci-app-v2raya,然后编译即可。

openwrt编译passwall到固件里面

1 添加软件源找到这个列表 https://github.com/kenzok8/openwrt-packages 执行 1 2 3 4 5 6 sed -i '$a src-git kenzo https://github.com/kenzok8/openwrt-packages' feeds.conf.default sed -i '$a src-git small https://github.com/kenzok8/small' feeds.conf.default git pull ./scripts/feeds update -a ./scripts/feeds install -a make menuconfig 2 配置菜单选择luci->applicati

编译openwrt单独的包

1 alist https://github.com/sbwml/luci-app-alist 1 2 3 git clone https://github.com/sbwml/luci-app-alist package/alist make menuconfig # choose LUCI -> Applications -> luci-app-alist make package/alist/luci-app-alist/compile V=s # build luci-app-alist 编译完成后,bin/packages/x86_64/base中找到 1 2 root@tignioj:~/mybuild/openwrt/bin/packages/x86_64/base# ls *alist* alist_3.30.0-2_x86_64.ipk luci-app-alist_1.0.11_all.ipk luci-i18n-alist-zh-cn_git-23.223.34172-ff70952_all.ipk 复制到o

docker编译openwrt

1 整体步骤 docker构建编译所需的系统镜像 下载源代码 首次编译 选择自己需要的软件再次编译 集成第三方软件包编译/编译单独ipk 官网教程: https://openwrt.org/docs/guide-developer/toolchain/start 1.1 为