在 OpenWRT 自带的终端里或者SSH进入后执行以下命令:
# 更新软件列表
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
文章评论