Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions docs/common/other-system/openwrt/_argon-theme.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Argon 主题

如需美化 LuCI 界面,可安装 Argon 主题。

### 使用 apk 从 GitHub 安装 Argon

OpenWrt 新版本已使用 `apk` 作为包管理工具。
如果软件包来自 GitHub Release,而不是 OpenWrt 官方软件源,可先下载对应的 `.apk` 文件,再使用 `apk` 安装。

```bash
cd /tmp
wget https://github.com/jerrykuku/luci-theme-argon/releases/download/v2.4.3/luci-theme-argon-2.4.3-r20250722.apk
apk add --allow-untrusted ./luci-theme-argon-2.4.3-r20250722.apk
```

### 切换主题

安装完成后,可执行以下命令切换到 Argon 主题:

```bash
uci set luci.main.mediaurlbase='/luci-static/argon'
uci commit luci
/etc/init.d/uhttpd restart
```

### 主题配置说明

`luci-app-argon-config` 当前 GitHub Release 仍主要提供 `.ipk` 包,不一定适用于使用 `apk` 的系统。
如果你的系统仅支持 `apk`,建议先只安装主题本体;若后续发布了对应的 `.apk` 包,再按相同方式安装。
123 changes: 123 additions & 0 deletions docs/common/other-system/openwrt/_mainline-install.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
import Etcher from "../../general/_etcherV2.mdx";
import Rkdevtool from "../../dev/_rkdevtoolV3.mdx";

## OpenWrt 主线安装

本文档将介绍如何把 OpenWrt 主线镜像安装到 {props.product}。

## 镜像下载

请到 <a href={props?.download_page ?? "../download"}>资源下载页面</a> 下载对应的镜像文件。

推荐镜像文件名:

{props.image_name}

:::warning
请确认下载的镜像文件名与产品型号一致,避免误刷其他型号镜像,下载完成后需要先解压文件再进行后续操作。
:::

## 安装系统

<Tabs queryString="target">

<TabItem
value="microsd"
label="安装系统到 microSD 卡"
default={props.show_emmc === false}
>

### 准备工作

- 1x microSD 卡
- 1x microSD 读卡器
- 1x 电源适配器(推荐使用 {props.power})

### 安装系统

<Etcher model={props.model} />

### 启动系统

- 将写好镜像的 microSD 卡插入 {props.product} 的 MicroSD 卡槽
- 连接 {props.power} 并启动系统

</TabItem>

<TabItem
value="emmc"
label="安装系统到 eMMC"
attributes={{ className: props.show_emmc === false && "tab_none" }}
>

### 准备工作

- USB 数据线
- x86 PC
- 已解压的镜像文件
- 带 eMMC 的 {props.product}

### 进入 Maskrom 模式

{props?.maskrom_page ? (

{" "}

<p>
请参考 <a href={props.maskrom_page}>Maskrom 操作说明</a>。
</p>
) : (<p>请根据对应产品文档进入 Maskrom 模式。</p>
)}

### Windows

<Rkdevtool
emmc={false}
pcie={false}
sata={false}
rkdevtool_emmc_img={
props?.rkdevtool_emmc_img ?? "/img/rkdevtool/emmc-path.webp"
}
>
{props.children}
</Rkdevtool>

### Linux

{props?.linux_page ? (

{" "}

<p>
请参考 <a href={props.linux_page}>Linux 刷机说明</a>。
</p>
) : (<p>请根据对应产品文档使用 `rkdeveloptool` 或 `upgrade_tool` 进行刷机。</p>
)}

</TabItem>

</Tabs>

## 系统登录

- 默认管理地址通常为 `192.168.1.1`
- 默认用户名通常为 `root`
- 首次登录后请按页面提示设置密码

## 存储扩容

如 OpenWrt 主线镜像首次启动后根分区未占满整盘,建议优先参考 OpenWrt 官方扩容说明:

- <a href="https://openwrt.org/docs/guide-user/advanced/expand_root">
Expanding root partition and filesystem
</a>

:::tip
不同产品的系统盘节点、分区号和扩容方式可能不同,请不要直接复用其他产品的分区命令。
:::

## 常见问题

- 设备无法识别:检查是否正确进入 Maskrom 模式,或更换数据线与 USB 接口。
- 刷写失败:检查镜像格式、下载完整性与设备型号是否匹配。
- 无法访问管理页面:检查默认 IP、网口连接方式与主机网段配置。
2 changes: 2 additions & 0 deletions docs/e/e20c/other-os/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ sidebar_position: 5
# 其他系统

介绍非 RadxaOS 的其他系统。

<DocCardList />
9 changes: 9 additions & 0 deletions docs/e/e20c/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/e/e20c/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
18 changes: 18 additions & 0 deletions docs/e/e20c/other-os/openwrt/install-os.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
sidebar_position: 1
title: 系统安装
---

import OpenWrtMainline from '../../../../common/other-system/openwrt/\_mainline-install.mdx';

# 系统安装

<OpenWrtMainline
product="Radxa E20C"
download_page="../../download"
image_name="openwrt-25.12.0-rockchip-armv8-radxa_e20c-ext4-sysupgrade.img.gz"
power="合适的电源适配器"
model="e20c"
maskrom_page="../../getting-started/install-os/maskrom/"
linux_page="../../getting-started/install-os/maskrom/linux_macos"
/>
2 changes: 2 additions & 0 deletions docs/e/e52c/other-os/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ sidebar_position: 5
# 其他系统

介绍非 RadxaOS 的其他系统。

<DocCardList />
9 changes: 9 additions & 0 deletions docs/e/e52c/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/e/e52c/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
18 changes: 18 additions & 0 deletions docs/e/e52c/other-os/openwrt/install-os.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
sidebar_position: 1
title: 系统安装
---

import OpenWrtMainline from '../../../../common/other-system/openwrt/\_mainline-install.mdx';

# 系统安装

<OpenWrtMainline
product="Radxa E52C"
download_page="../../download"
image_name="openwrt-25.12.0-rockchip-armv8-radxa_e52c-ext4-sysupgrade.img.gz"
power="合适的电源适配器"
model="e52c"
maskrom_page="../../getting-started/install-os/maskrom/"
linux_page="../../getting-started/install-os/maskrom/linux_macos"
/>
9 changes: 9 additions & 0 deletions docs/rock2/rock2a/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 8
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/rock2/rock2a/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
18 changes: 18 additions & 0 deletions docs/rock2/rock2a/other-os/openwrt/install-os.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
sidebar_position: 1
title: 系统安装
---

import OpenWrtMainline from '../../../../common/other-system/openwrt/\_mainline-install.mdx';

# 系统安装

<OpenWrtMainline
product="Radxa ROCK 2A"
download_page="../../download"
image_name="openwrt-25.12.0-rockchip-armv8-radxa_rock_2a-ext4-sysupgrade.img.gz"
power="合适的电源适配器"
model="rock2a"
maskrom_page="../../getting-started/install-os/maskrom/"
linux_page="../../getting-started/install-os/maskrom/linux"
/>
9 changes: 9 additions & 0 deletions docs/rock2/rock2f/other-os/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 5
---

# 其他系统

介绍非 Radxa OS 的其他系统,例如 OpenWrt

<DocCardList />
9 changes: 9 additions & 0 deletions docs/rock2/rock2f/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/rock2/rock2f/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
18 changes: 18 additions & 0 deletions docs/rock2/rock2f/other-os/openwrt/install-os.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
sidebar_position: 1
title: 系统安装
---

import OpenWrtMainline from '../../../../common/other-system/openwrt/\_mainline-install.mdx';

# 系统安装

<OpenWrtMainline
product="Radxa ROCK 2F"
download_page="../../download"
image_name="openwrt-25.12.0-rockchip-armv8-radxa_rock_2f-ext4-sysupgrade.img.gz"
power="合适的电源适配器"
model="rock2f"
maskrom_page="../../getting-started/install-os/maskrom/"
linux_page="../../getting-started/install-os/maskrom/linux"
/>
9 changes: 9 additions & 0 deletions docs/rock3/rock3a/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 8
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/rock3/rock3a/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
17 changes: 17 additions & 0 deletions docs/rock3/rock3a/other-os/openwrt/install-os.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
sidebar_position: 1
title: 系统安装
---

import OpenWrtMainline from '../../../../common/other-system/openwrt/\_mainline-install.mdx';

# 系统安装

<OpenWrtMainline
product="Radxa ROCK 3A"
download_page="../../getting-started/download"
image_name="openwrt-25.12.0-rockchip-armv8-radxa_rock_3a-ext4-sysupgrade.img.gz"
power="合适的电源适配器"
model="rock3a"
linux_page="../../low-level-dev/rkdeveloptool"
/>
9 changes: 9 additions & 0 deletions docs/rock3/rock3b/other-os/openwrt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 8
---

# OpenWrt 系统

主要介绍 OpenWrt 系统如何安装与使用

<DocCardList />
10 changes: 10 additions & 0 deletions docs/rock3/rock3b/other-os/openwrt/argon-theme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_position: 2
title: Argon 主题
---

import ArgonTheme from '../../../../common/other-system/openwrt/\_argon-theme.mdx';

# Argon 主题

<ArgonTheme />
Loading
Loading