diff --git a/Software/Applications/AAPT/aapt_命令查看_apk_包名_主_activity_版本等.md b/Software/Applications/AAPT/aapt_命令查看_apk_包名_主_activity_版本等.md index e745206..e0961b0 100644 --- a/Software/Applications/AAPT/aapt_命令查看_apk_包名_主_activity_版本等.md +++ b/Software/Applications/AAPT/aapt_命令查看_apk_包名_主_activity_版本等.md @@ -14,7 +14,7 @@ Ubuntu 可通过 apt 命令安装 aapt 工具: aapt 的其他 dump 参数及说明如下: -| Argument | Description | +| Options | Description | |----------------|-------------------------------------------------------| | badging | Print the label and icon for the app declared in APK. | | permissions | Print the permissions from the APK. | diff --git a/Software/Applications/IPerf/IPerf3_的交叉编译.md b/Software/Applications/IPerf/IPerf3_的交叉编译.md new file mode 100644 index 0000000..2ce7196 --- /dev/null +++ b/Software/Applications/IPerf/IPerf3_的交叉编译.md @@ -0,0 +1,12 @@ +# IPerf3 的交叉编译 + +```sh +cd +# Source SDK 环境变量 +source environment-setup-aarch64-poky-linux +# 还可以通过 CXX=arm-uclinux-g++ CC=arm-uclinux-gcc 来指定编译器 +./configure --host=arm +make +``` + +编译成功会生成 iperf3 可执行程序. diff --git a/Software/Applications/IPerf/IPerf_使用说明.md b/Software/Applications/IPerf/IPerf_使用说明.md new file mode 100644 index 0000000..545d45d --- /dev/null +++ b/Software/Applications/IPerf/IPerf_使用说明.md @@ -0,0 +1,53 @@ +# IPerf 使用说明 + +IPerf 可用于网络带宽测试,可在 Windows、Linux、Android、MacOS 和 iOS 系统下运行。主要有 IPerf2 和 IPerf3 两大版本。 + +IPerf 可做为 Server 端或 Client 端运行,Client 发起与 Server 端的通讯,并对通讯性能进行分析。 + +## 单线程 TCP 测试 + +```sh +# Server +iperf3 -s -p +# Client +iperf3 -c -p -i -t