Skip to content

Commit ee6dd5d

Browse files
committed
添加文章
1 parent 9baece7 commit ee6dd5d

File tree

9 files changed

+107
-45
lines changed

9 files changed

+107
-45
lines changed
262 KB
Loading
155 KB
Loading

docs/blog/adb-termux.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: 在安卓设备上通过 Termux 使用 adb 无线调试配对本设备
3+
createTime: 2026/02/16 16:13:57
4+
tags:
5+
- Termux
6+
- adb
7+
---
8+
9+
> 由于需要启用无线调试,请确保 Android 版本在 11 及以上,且连接到 WLAN。
10+
11+
::: steps
12+
1. 打开 `Termux`,安装 `android-tools`
13+
14+
```bash
15+
pkg install android-tools
16+
```
17+
18+
2. 打开系统`设置`,连续点击系统版本,启用`开发者模式`
19+
3. 进入`设置-更多设置-开发者选项-调试`,启用`无线调试`并进入
20+
21+
<div style="display: flex; justify-content: center; gap: 16px; flex-wrap: nowrap;">
22+
<img src="/images/adb-termux/1.jpg" alt="调试" style="width: 48%;" />
23+
<img src="/images/adb-termux/2.jpg" alt="无线调试" style="width: 48%;" />
24+
</div>
25+
26+
4. 点击`使用配对码配对设备`
27+
5. 以小窗模式打开 `Termux`
28+
29+
- 运行配对命令
30+
31+
```bash
32+
adb pair 192.168.0.xxx:xxxxx
33+
```
34+
35+
::: tip
36+
`IP 地址和端口`替换为提示框中的实际内容
37+
:::
38+
39+
- 回车后输入提示框中的 `WLAN 配对码`再回车
40+
- 运行连接命令
41+
42+
```bash
43+
adb connect 192.168.0.xxx:xxxxx
44+
```
45+
46+
::: warning
47+
`IP 地址和端口`替换为无线调试页面中的实际内容,不是提示框中的
48+
:::
49+
6. 连接成功,可运行以下命令查看连接设备
50+
51+
```bash
52+
adb devices
53+
```
54+
:::

docs/blog/echotrace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ copyright:
1111
url: "https://github.com/ycccccccy"
1212
creation: "reprint"
1313
source: "https://github.com/ycccccccy/echotrace/blob/main/docs/beginner_guide.md"
14+
draft: true
1415
---
1516

1617
> 本文根据项目文档编写,仅供参考。遇到问题请在 GitHub 提交 [Issue](https://github.com/ycccccccy/echotrace/issues) 或向他人请教,也建议有能力的人给该项目一个 Star 鼓励作者 🌟

docs/blog/termux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Termux 安装与美化
3+
createTime: 2025/08/29 15:52:51
34
tags:
45
- Termux
5-
createTime: 2025/08/29 15:52:51
66
---
77

88
@[bilibili](BV17CekzXEEh)

docs/blog/um-cli-android.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
title: 在安卓手机上使用 Unlock Music CLI 版
3+
createTime: 2025/12/04 17:12:45
34
tags:
45
- Termux
56
- Unlock Music
6-
createTime: 2025/12/04 17:12:45
77
---
88

9+
> Unlock Music 是一个移除已购音乐加密保护的开源项目,支持多种格式。本文介绍如何在安卓手机上通过 Termux 应用使用 Unlock Music CLI 版,使用时请自觉**遵守项目相关协议**
10+
911
## 准备
1012

1113
::: steps

docs/friends.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ groups:
2222
link: https://srinternet.github.io/
2323
avatar: https://avatars.githubusercontent.com/u/89620382?v=4
2424
desc: SR思锐开发者
25+
- name: 黎泽懿
26+
link: https://aionflux.cn/
27+
avatar: https://aionflux.cn/lzy.png
28+
desc: 黎泽懿_Aionflux 的博客
2529
- name: imsyy
2630
link: https://www.imsyy.top/
2731
avatar: https://avatars.githubusercontent.com/u/42232682?v=4

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"@iconify/json": "^2.2.439",
1818
"@vuepress/bundler-vite": "2.0.0-rc.26",
1919
"@vuepress/plugin-feed": "2.0.0-rc.121",
20-
"@waline/client": "^3.9.0",
20+
"@waline/client": "^3.12.0",
2121
"http-server": "^14.1.1",
22-
"swiper": "^12.1.0",
22+
"swiper": "^12.1.1",
2323
"typescript": "^5.9.3",
2424
"vue": "^3.5.28",
2525
"vuepress": "2.0.0-rc.26",
26-
"vuepress-theme-plume": "1.0.0-rc.188",
26+
"vuepress-theme-plume": "1.0.0-rc.190",
2727
"postprocessing": "^6.38.2",
2828
"three": "^0.182.0"
2929
},

pnpm-lock.yaml

Lines changed: 41 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)