From f3fa5d640000d571ef19bdf0443c06358b73ba38 Mon Sep 17 00:00:00 2001 From: Dichgrem Date: Fri, 3 May 2024 10:16:34 +0800 Subject: [PATCH] Initial commit --- content/awesome-openwrt.md | 15 ++++++++++++++- public/awesome-openwrt/index.html | 11 +++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/content/awesome-openwrt.md b/content/awesome-openwrt.md index b65c87a..83e14ff 100644 --- a/content/awesome-openwrt.md +++ b/content/awesome-openwrt.md @@ -50,9 +50,22 @@ https://drive.google.com/drive/folders/1uRXg_krKHPrQneI3F2GNcSVRoCgkqESr ![image-ariu.webp](https://pic.dich.ink/1/2024/03/06/65e86687ef0fc.webp) ## 后记 -开源世界还存在着 DD-WERT、Tomato 等系统。正如互联网的发展并非一帆风顺,OpenWRT 也出现过核心开发者出走,另立山头推出 LEDE 等波折,在18年 LEDE 与 openwrt 合并后,通过众多开发者的不懈努力, OpenWRT 有了现在丰富完善的生态。 +常用命令: +``` +# 更新软件列表 +opkg update + +# 更新所有 LUCI 插件 +opkg list-upgradable | grep luci- | cut -f 1 -d ' ' | xargs opkg upgrade + +# 如果要更新所有软件,包括 OpenWRT 内核、固件等 +opkg list-upgradable | cut -f 1 -d ' ' | xargs opkg upgrade + +``` +开源世界还存在着 DD-WERT、Tomato 等系统。正如互联网的发展并非一帆风顺,OpenWRT 也出现过核心开发者出走,另立山头推出 LEDE 等波折,在18年 LEDE 与 openwrt 合并后,通过众多开发者的不懈努力, OpenWRT 有了现在丰富完善的生态。 + ## 参考 - [Openwrt wiki](https://openwrt.org/zh/docs/start) diff --git a/public/awesome-openwrt/index.html b/public/awesome-openwrt/index.html index 1306a47..df993a6 100644 --- a/public/awesome-openwrt/index.html +++ b/public/awesome-openwrt/index.html @@ -132,6 +132,17 @@ 2.当看到 please press Enter to activate this console这个提示的时候系统就安装完毕了。可使用 passwd 命令设置密码。软路由将自动获取IP地址,随后我们在浏览器中打开该地址,即可看到 Lucl 界面。 image-ariu.webp

后记

+

常用命令:

+
# 更新软件列表
+opkg update
+
+# 更新所有 LUCI 插件
+opkg list-upgradable | grep luci- | cut -f 1 -d ' ' | xargs opkg upgrade
+
+# 如果要更新所有软件,包括 OpenWRT 内核、固件等
+opkg list-upgradable | cut -f 1 -d ' ' | xargs opkg upgrade
+
+

开源世界还存在着 DD-WERT、Tomato 等系统。正如互联网的发展并非一帆风顺,OpenWRT 也出现过核心开发者出走,另立山头推出 LEDE 等波折,在18年 LEDE 与 openwrt 合并后,通过众多开发者的不懈努力, OpenWRT 有了现在丰富完善的生态。

参考