如何使用GitHub Host自动更新OpenWrt
如果你使用OpenWrt路由器,你可能需要更新你的路由器以获取最新的软件和安全更新。一个很好的方式是使用GitHub Host来更新你的OpenWrt路由器。使用这种方式,你可以自动下载和安装最新版本的软件包。以下是如何使用GitHub Host自动更新OpenWrt的步骤:
1. 首先,在OpenWrt路由器上安装git软件包。你可以使用以下命令:opkg update && opkg install git
2. 然后,创建一个名为"customfeeds.conf"的文件,并将以下内容添加到文件中:
src-git packages https://github.com/openwrt/packages.git;openwrt-19.07
src-git luci https://github.com/openwrt/luci.git;openwrt-19.07
src-git routing https://github.com/openwrt-routing/packages.git;openwrt-19.07
src-git telephony https://github.com/openwrt/telephony.git;openwrt-19.07
3. 接下来,使用以下命令更新软件包列表:
cd /usr/src && git clone https://github.com/openwrt/openwrt.git && cd openwrt && ./scripts/feeds update -a
4. 然后,使用以下命令安装更新:
./scripts/feeds install -a && make defconfig && make
5. 最后,重启路由器并验证更新是否成功。