最新资讯

  • 【全网最全】鸿蒙 HDC 命令合集 (awesome-hdc)

【全网最全】鸿蒙 HDC 命令合集 (awesome-hdc)

2025-05-08 06:00:50 29 阅读

最近在搞鸿蒙Next自动化,HDC命令作为最基础的调试工具,发现全网没有比较完整的命令介绍,于是整理了这篇文档。

由于鸿蒙生态还处于初期,官方提供的hdc命令还在不断修改中,这篇文档更新不及时,请以github为准https://github.com/codematrixer/awesome-hdc
如果有问题欢迎去提PR和Issue,也欢迎点Star ⭐️ ⭐️ ⭐️ ⭐️ ⭐️
https://github.com/codematrixer/awesome-hdc

HDC(OpenHarmony Device Connector) 是为鸿蒙开发/测试人员提供的用于设备调试的命令行工具,类似Android端的ADB工具。

HDC主要有三部分组成

  1. hdc client:运行于电脑上的客户端,用户可以在电脑命令终端(windows cmd/linux shell)下请求执行相应的hdc命令。
  2. hdc server:作为后台进程也运行于电脑上,server管理client和设备端daemon之间通信包括连接的复用、数据通信包的收发,以及个别本地命令的直接处理。
  3. hdc daemon:daemon部署于OpenHarmony设备端作为守护进程按需运行,负责处理来自client端请求。

整体架构和Android系统的ADB架构非常类似。

文章目录

  • HDC安装
  • 基本用法
    • 基本语法
  • 设备连接管理
    • 查看HDC版本
    • 启动/停止 HDC Server
    • 查询设备列表
    • 查询设备UDID
    • 重启手机
  • 查看设备信息
    • 名称
    • Brand
    • Model
    • 系统版本
    • OS版本
    • CPU架构
    • 分辩率
    • wlan IP
    • 电量/温度
    • 查看屏幕信息
    • 查看屏幕旋转状态
    • 查看屏幕亮屏状态
    • 点亮屏幕(唤醒)
    • 查看网络状态
  • 应用管理
    • 安装应用
    • 卸载应用
    • 获取应用列表
    • 启动应用
    • 退出应用
    • 获取应用版本
    • Dump应用信息
      • 获取应用 Ability信息
      • 获取应用详情
    • 清除应用数据
      • 清除应用缓存
      • 清除应用数据
    • 显示可调试应用列表
  • 端口转发
    • 显示端口转发列表
    • 本地端口转发到手机
    • 删除端口转发任务
  • 无线调试
  • 文件传输
    • 从本地电脑发送文件至手机
    • 从手机拷贝文件至本地电脑
  • UI模拟操作(点击滑动等)
  • 屏幕截图
  • 屏幕录屏
  • 打开Scheme (URL)
  • 获取页面布局信息(控件树)
  • 录制用户操作
  • 系统日志(log)
  • 导出日志
  • 导出crash日志
  • hidumper工具
    • list system abilities
    • RenderService
    • DisplayManagerService
    • PowerManagerService
    • BatteryService
    • NetConnManager
    • StorageManager
  • aa工具
    • start
    • stop-service
    • force-stop
    • test
    • attach
    • detach
    • appdebug
  • bm工具
    • install
    • uninstall
    • dump
    • clean
    • enable
    • disable
    • get
  • param工具
  • Instrument Test
  • 性能工具
  • 参考链接

HDC安装

  • 下载 Command Line Tools 并解压

  • hdc文件在command-line-tools/sdk/HarmonyOS-NEXT-DB2/openharmony/toolchains目录下

  • 配置电脑环境变量,以macOS为例,在~/.bash_profile 或者 ~/.zshrc文件中添加如下内容:

export HM_SDK_HOME="/Users/develop/command-line-tools/sdk/HarmonyOS-NEXT-DB2"  //请以sdk实际安装目录为准
export PATH=$PATH:$HM_SDK_HOME/hms/toolchains:$HM_SDK_HOME/openharmony/toolchains
export HDC_SERVER_PORT=7035

也可以自行编译安装:参考鸿蒙官方gitree文档

基本用法

基本语法

hdc -t  

如果只有一个设备/模拟器连接时,可以省略掉-t 这一部分,直接使用hdc 。在多个设备/模拟器连接的情况下需要指定-t 参数, connectKey可以通过hdc list targets命令获取,对应Android里的adb devices获取的serialNumber

$ hdc list targets

127.0.0.1:5555    //:形式的connectKey ,一般为无线连接的设备或模拟器
FMR0223C13000649

比如给FMR0223C13000649 这个设备安装应用:

$ hdc -t FMR0223C13000649 install entry-default-signed.hap

[Info]App install path:/Users/develop/entry-default-signed.hap, queuesize:0, msg:install bundle successfully.
AppMod finish

注意事项

  • 使用hdc,如果出现异常,可以尝试通过hdc kill -r命令杀掉并重启hdc服务。
  • 如果出现hdc list targets获取不到设备信息的情况,可以通过任务管理器查看是否有hdc进程存在。若进程存在,则通过hdc kill -r命令杀掉该进程。

设备连接管理

查看HDC版本

$ hdc -v

Ver: 2.0.0a

启动/停止 HDC Server

停止

$ hdc kill

Kill server finish

重启

$ hdc start -r

查询设备列表

$ hdc list targets

127.0.0.1:5555
FMR0223C13000649

-v 选项 显示详细信息

$ hdc list targets -v

127.0.0.1:5555		  TCP	  Connected	  localhost
FMR0223C13000649		USB	  Connected	  unknown...

输出的内容第一列为设备的connectKey, 第二列是设备连接方式,第三列为设备连接状态,第四列暂时未知

查询设备UDID

$ hdc shell bm get --udid

udid of current device is :
C46284C052AE01BBD2358FE44B279524B508FC959AAB5F4B0B74E42A06569B7E

这个udid在用开发者账号打包时,需要添加这个udid到对应的profile文件中

重启手机

$ hdc target boot

查看设备信息

名称

$ hdc shell param get const.product.name               

HUAWEI Mate 60 Pro

Brand

$ hdc shell param get const.product.brand

HUAWEI 

Model

$ hdc shell param get const.product.model

ALN-AL00 

系统版本

$ hdc shell param get const.product.software.version                                      

ALN-AL00 5.0.0.22(SP35DEVC00E22R4P1log) 

OS版本

$ hdc shell param get const.ohos.apiversion  

12 

CPU架构

$ hdc  shell param get const.product.cpu.abilist  

arm64-v8a 

分辩率

$ hdc shell hidumper -s RenderService -a screen


-------------------------------[ability]-------------------------------


----------------------------------RenderService---------------------------------
-- ScreenInfo
screen[0]: id=0, powerstatus=POWER_STATUS_OFF, backlight=51, screenType=EXTERNAL_TYPE, render size: 1260x2720, physical screen resolution: 1260x2720, isvirtual=false, skipFrameInterval_:1

  supportedMode[0]: 1260x2720, refreshrate=120
  supportedMode[1]: 1260x2720, refreshrate=90
  supportedMode[2]: 1260x2720, refreshrate=60
  supportedMode[3]: 1260x2720, refreshrate=30
  activeMode: 1260x2720, refreshrate=60
  capability: name=, phywidth=72, phyheight=156,supportlayers=12, virtualDispCount=0, propCount=0, type=DISP_INTF_HDMI, supportWriteBack=false

执行上述命令后,解析返回内容,可以通过正则表达式提取1260x2720

wlan IP

$ hdc shell ifconfig

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:99055 errors:0 dropped:0 overruns:0 frame:0
          TX packets:99055 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:5889697 TX bytes:5889697

wlan0     Link encap:Ethernet  HWaddr ea:f9:7d:21:52:31
          inet addr:172.31.125.111  Bcast:172.31.125.255  Mask:255.255.254.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1232924 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2061202 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:877179224 TX bytes:2570352818

p2p0      Link encap:Ethernet  HWaddr d2:0d:f7:cc:12:fb
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 TX bytes:0

chba0     Link encap:Ethernet  HWaddr ec:11:05:fb:18:66
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 TX bytes:0

注意:这个命令在Beta3版本之前,会提示Cannot open netlink socket: Permission denied,需要升级系统。

电量/温度

$ hdc shell hidumper -s BatteryService -a -i                

-------------------------------[ability]-------------------------------


----------------------------------BatteryService---------------------------------
Current time: 2024-05-30 12:08:37.419
capacity: 100 
batteryLevel: 1 
chargingStatus: 3 
healthState: 1 
pluggedType: 1 
voltage: 4496732 
present: 1 
technology: Li-poly 
nowCurrent: 123 
currentAverage: 83 
totalEnergy: 5203 
remainingEnergy: 5207 
remainingChargeTime: 0 
temperature: 280 
chargeType: 1 

查看屏幕信息

$ hdc shell hidumper -s DisplayManagerService -a -a

-------------------------------[ability]-------------------------------


----------------------------------DisplayManagerService----------------------------------
-------------- DMS Multi User Info --------------
[oldScbPid:]
[userId:] 100
[ScbPid:] 4438
---------------- Screen ID: 0 ----------------
FoldStatus:                   UNKNOWN
[SCREEN SESSION]
Name:                         UNKNOWN
RSScreenId:                   0
activeModes:    0, 1260, 2720, 120
SourceMode:                   0
ScreenCombination:            0
Orientation:                  0
Rotation:                     0
ScreenRequestedOrientation:   0
[RS INFO]
SupportedColorGamuts:         0, 4, 6
ScreenColorGamut:             4
GraphicPixelFormat:           0
SupportedScreenHDRFormat:     2, 1, 3
ScreenHDRFormat:              2
SupportedColorSpaces:         0, 2294273, 2294278
ScreenColorSpace:             2294273
[CUTOUT INFO]
WaterFall_L:         0, 0, 0, 0
WaterFall_T:         0, 0, 0, 0
WaterFall_R:         0, 0, 0, 0
WaterFall_B:         0, 0, 0, 0
BoundingRects:       [494, 36, 273, 72]
[SCREEN INFO]
VirtualWidth:                 387
VirtualHeight:                836
LastParentId:                 18446744073709551615
ParentId:                     1
IsScreenGroup:                0
VirtualPixelRatio:            3.25
Rotation:                     0
Orientation:                  0
SourceMode:                   0
ScreenType:                   1
[SCREEN PROPERTY]
Rotation:                     0
Density:                      3.25
DensityInCurResolution:       3.25
PhyWidth:                     72
PhyHeight:                    156
RefreshRate:                  60
VirtualPixelRatio:            3.25
ScreenRotation:               0
Orientation:                  0
DisplayOrientation:           0
GetScreenType:                1
ReqOrientation:               0
DPI:                    444.5, 442.871
Offset:                 0, 0
Bounds:              0, 0, 1260, 2720,
PhyBounds:           0, 0, 1260, 2720,
AvailableArea        0, 0, 1260, 2720,
DefaultDeviceRotationOffset   0

执行上述命令后,解析返回内容,通过正则提取需要的信息,比如屏幕尺寸分辨率Bounds,VirtualWidth,VirtualHeight,PhyWidth,PhyHeight,ScreenRotation

查看屏幕旋转状态

$ hdc shell hidumper -s DisplayManagerService -a -a

通过上面的查看屏幕信息命令,通过正则提取ScreenRotation字段即可,ScreenRotation有四个值:

  • 0:未旋转
  • 90:顺时针旋转90度
  • 180:顺时针旋转180度
  • 270:顺时针旋转270度

备注:目前旋转状态只能查看,不支持设置

查看屏幕亮屏状态

$ hdc shell hidumper -s PowerManagerService -a -s

-------------------------------[ability]-------------------------------


----------------------------------PowerManagerService----------------------------------
POWER STATE DUMP:
Current State: AWAKE  Reason: 20  Time: 521085695
ScreenOffTime: Timeout=600000ms
DUMP DETAILS:
Last Screen On: 521248337
Last Screen Off: 467804783
Last SuspendDevice: 0
Last WakeupDevice: 464729447
Last Refresh: 521248337
DUMP EACH STATES:
State: AWAKE   Reason: POWER_KEY   Time: 521085695
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: FREEZE   Reason: INIT   Time: 0
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: INACTIVE   Reason: TIMEOUT   Time: 467805109
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: STAND_BY   Reason: INIT   Time: 0
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: DOZE   Reason: INIT   Time: 0
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: SLEEP   Reason: TIMEOUT   Time: 467810120
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: HIBERNATE   Reason: INIT   Time: 0
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: SHUTDOWN   Reason: INIT   Time: 0
   Failure: INIT   Reason:    From: AWAKE   Time: 0

State: DIM   Reason: TIMEOUT   Time: 467797280
   Failure: TIMEOUT   Reason: Blocked by running lock   From: AWAKE   Time: 447180354

屏幕状态有这几种:

  • INACTIVE
  • SLEEP
  • AWAKE

点亮屏幕(唤醒)

$ hdc shell power-shell wakeup

WakeupDevice is called

查看网络状态

联网状态

$ hdc shell hidumper -s NetConnManager

-------------------------------[ability]-------------------------------


----------------------------------NetConnManager----------------------------------
Net connect Info:
	defaultNetSupplier_ is nullptr
	SupplierId:
	NetId: 0
	ConnStat: 0
	IsAvailable:
	IsRoaming: 0
	Strength: 0
	Frequency: 0
	LinkUpBandwidthKbps: 0
	LinkDownBandwidthKbps: 0
	Uid: 0
Dns result Info:
	netId: 0
	totalReports: 2
	failReports: 2

wifi信息

$ hdc shell hidumper -s WifiDevice

-------------------------------[ability]-------------------------------


----------------------------------WifiDevice----------------------------------
WiFi active state: activated

WiFi connection status: connected
  Connection.ssid: K-Lab
  Connection.bssid: cc:d0:**:**:**:e2
  Connection.rssi: -45
  Connection.band: 2.4GHz
  Connection.frequency: 2462
  Connection.linkSpeed: 156
  Connection.macAddress: ea:f9:**:**:**:31
  Connection.isHiddenSSID: false
  Connection.signalLevel: 4

Country Code: CN

应用管理

安装应用

$ hdc app install entry-default-signed.hap

[Info]App install path:/Users/develop/entry-default-signed.hap, queuesize:0, msg:install bundle successfully.
AppMod finish

或者

$ hdc install entry-default-signed.hap

[Info]App install path:/Users/develop/entry-default-signed.hap, queuesize:0, msg:install bundle successfully.
AppMod finish

卸载应用

$ hdc app uninstall com.kk.hmscrcpy

[Info]App uninstall path:, queuesize:0, msg:uninstall bundle successfully.
AppMod finish

或者

$ hdc uninstall com.kk.hmscrcpy

[Info]App uninstall path:, queuesize:0, msg:uninstall bundle successfully.
AppMod finish

获取应用列表

$ hdc shell bm dump -a

ID: 100:
	com.huawei.associateassistant
	com.huawei.batterycare
	com.huawei.hmos.AutoRegService
	com.huawei.hmos.advisor
	com.huawei.hmos.advsecmode
	com.huawei.hmos.aibase
	com.huawei.hmos.aidataservice
	com.huawei.hmos.aidispatchservice
	com.huawei.hmos.ailife
	com.huawei.hmos.ailifesvc
	com.huawei.hmos.audioaccessorymanager
	com.huawei.hmos.authcredmgr
  ...

启动应用

通过启动Ability来拉起APP

hdc shell aa start -a {abilityName} -b {bundleName} 

  • 其中bundleName可以通过hdc shell bm dump -a获取

  • 其中abilityName可以通过如下命令获取(查看当前任务栈的ability信息)

$ hdc shell aa dump -l    # 运行命令前需要手动打开app

User ID #100
  current mission lists:{
    Mission ID #139  mission name #[#com.kuaishou.hmapp:kwai:EntryAbility]  lockedState #0  mission affinity #[]
      AbilityRecord ID #55
        app name [com.kuaishou.hmapp]
        main name [EntryAbility]
        bundle name [com.kuaishou.hmapp]
        ability type [PAGE]
        state #FOREGROUND  start time [152523]
        app state #FOREGROUND
        ready #1  window attached #0  launcher #0
        callee connections:
        isKeepAlive: false
 }

里面的EntryAbility就是你要打开app的Ability名称

退出应用

强制退出应用

hdc shell aa force-stop {bundleName} 
  • 其中bundleName可以通过hdc shell bm dump -a获取

获取应用版本

$ hdc shell bm dump -n {bundleName}

执行上述命令后,再解析json, 提取versionName字段即可

Dump应用信息

aa dump

$ hdc shell aa dump -h

usage: aa dump 
options list:
  -h, --help                   list available commands
  -a, --all                    dump all abilities
  -l, --mission-list           dump mission list
  -i, --ability                dump abilityRecordId
  -e, --extension              dump elementName (FA: serviceAbilityRecords,Stage: ExtensionRecords)
  -p, --pending                dump pendingWantRecordId
  -r, --process                dump process
  -d, --data                   dump the data abilities
  -u, --userId                 userId
  -c, --client                 client
  -c, -u are auxiliary parameters and cannot be used alone

bm dump

$ hdc shell bm dump -h

usage: bm dump 
options list:
  -h, --help                           list available commands
  -a, --all                            list all bundles in system
  -n, --bundle-name       list the bundle info by a bundle name
  -s, --shortcut-info                  list the shortcut info
  -d, --device-id           specify a device id
  -u, --user-id               specify a user id

获取应用 Ability信息

$ hdc shell aa dump -l    //运行命令前需要手动打开app

User ID #100
  current mission lists:{
    Mission ID #139  mission name #[#com.kuaishou.hmapp:kwai:EntryAbility]  lockedState #0  mission affinity #[]
      AbilityRecord ID #55
        app name [com.kuaishou.hmapp]
        main name [EntryAbility]
        bundle name [com.kuaishou.hmapp]
        ability type [PAGE]
        state #FOREGROUND  start time [152523]
        app state #FOREGROUND
        ready #1  window attached #0  launcher #0
        callee connections:
        isKeepAlive: false
 }

获取应用详情

查询该应用的详细信息

$ hdc shell bm dump -n com.kuaishou.hmapp

com.kuaishou.hmapp:
{
    "appId": "com.kuaishou.hmapp_BIS88rItfUAk+V9Y4WZp2HgIZ/JeOgvEBkwgB/YyrKiwrWhje9Xn2F6Q7WKFVM22RdIR4vFsG14A7ombgQmIIxU=",
    "appIdentifier": "5765880207853819885",
    "appIndex": 0,
    "applicationInfo": {
        ...
        "applicationReservedFlag": 0,
        "arkNativeFileAbi": "",
        "arkNativeFilePath": "",
        "asanEnabled": false,
        "asanLogPath": "",
        "associatedWakeUp": false,
        "bundleName": "com.kuaishou.hmapp",
        "bundleType": 0,
        "cacheDir": "",
        "codePath": "/data/app/el1/bundle/public/com.kuaishou.hmapp",
        "compileSdkType": "HarmonyOS",
        "compileSdkVersion": "4.1.0.73",
        "cpuAbi": "arm64-v8a",
        "crowdtestDeadline": -1,
        "dataBaseDir": "/data/app/el2/database/com.kuaishou.hmapp",
        "dataDir": "",
        "debug": true,
        "description": "",
        "descriptionId": 0,
        "descriptionResource": {
            "bundleName": "com.kuaishou.hmapp",
            "id": 0,
            "moduleName": "kwai"
        },
        "deviceId": "PHONE-001",
        "distributedNotificationEnabled": true,
        "enabled": true,
        "entityType": "unspecified",
        "entryDir": "",
        "entryModuleName": "",
        "fingerprint": "96C4B0B051421A56EC9117BC6E3CF093C428B6B6D59DA13205C29C9BDD39AE7C",
        ...
        "minCompatibleVersionCode": 999999,
        "moduleInfos": [
            {
                "moduleName": "kwai",
                "moduleSourceDir": "",
                "preloads": []
            }
        ],
				...
        "userDataClearable": true,
        "vendor": "快手",
        "versionCode": 999999,
        "versionName": "12.2.40"
    },
    "compatibleVersion": 40100011,
    "cpuAbi": "",
    "defPermissions": [],
    "description": "",
    "entryInstallationFree": false,
    "entryModuleName": "kwai",
    "gid": 20020014,
    "hapModuleInfos": [
        ...
    ],
    "reqPermissions": [
        "ohos.permission.ACCELEROMETER",
        "ohos.permission.GET_NETWORK_INFO",
        "ohos.permission.GET_WIFI_INFO",
        "ohos.permission.INTERNET",
        "ohos.permission.SET_NETWORK_INFO",
        "ohos.permission.STORE_PERSISTENT_DATA"
    ],
		...
    "vendor": "快手",
    "versionCode": 999999,
    "versionName": "12.2.40"
}

通过这个命令可以获取到很多应用的关键信息,比如reqPermissionsversionabilities等等

清除应用数据

$ hdc shell bm clean -h

usage: bm clean 
options list:
  -h, --help                                      list available commands
  -n, --bundle-name                  bundle name
  -c, --cache                                     clean bundle cache files by bundle name
  -d, --data                                      clean bundle data files by bundle name
  -u, --user-id                          specify a user id

清除应用缓存

$ hdc shell bm clean -n {bundleName}  -c

clean bundle cache files successfully.

其中bundleName可以通过hdc shell bm dump -a获取, 比如com.kuaishou.hmapp

清除应用数据

$ hdc shell bm clean -n {bundleName} -d 

显示可调试应用列表

$  hdc jpid

2571
2633
2638
2658
2666
2691
2825
3310
3804
3977
30178

$ hdc track-jpid

0000
  • jpid显示可调试应用列表
  • track-jpid动态显示可调试应用列表。

端口转发

命令说明
fport ls展示全部“端口转发主机端口转发数据到设备侧端口”的转发任务
fport local remote端口转发主机端口转发数据到设备侧端口
fport rm local remote删除指定“端口转发主机端口转发数据到设备侧端口”的转发任务
rport ls展示全部“端口转发设备侧端口转发数据到主机端口”的转发任务
rport local remote端口转发设备侧端口转发数据到主机端口
rport rm local remote删除指定“端口转发设备侧端口转发数据到主机端口”的转发任务

显示端口转发列表

展示电脑端口转发到手机端口的列表

$ hdc fport ls

FMR0223C13000649    tcp:7912 tcp:7912    [Forward]

本地端口转发到手机

将本地电脑的7913端口转发到手机7912端口

$ hdc fport tcp:7913 tcp:7912

Forwardport result:OK

这个命令非常实用,比如我再手机上实现了一个 http服务,没有这个命令前需要通过手机ip:port来访问,这就需要提前知道手机的wlanIP,执行这个命令后可以直接通过localhost:localPort来访问手机里的服务。

删除端口转发任务

$ hdc fport rm tcp:7913 tcp:7912
Remove forward ruler success, ruler:tcp:7913 tcp:7912

$ hdc fport ls
[Empty]

同理,rport命令表示手机端口转发到电脑端口,我就不一一举例了.

无线调试

  1. 在手机上开启5555端口 hdc -t {SERIAL} tmode port {PORT}
  2. 连接手机上的端口 hdc -t {SERIAL} tconn {WLANIP}:{PORT}
  3. 恢复手机USB连接 hdc -t {SERIAL} tmode usb

示例

$ hdc tmode port 5555

$ hdc tconn 172.31.124.84:5555
Connect OK

$ hdc list targets
172.31.124.84:5555

$ hdc tmode usb      
Set device run mode successful.

不过目前这个无线调试,会导致该手机USB连接方式断开,导致无法进行端口转发,每次进行无线调试时,需要知道手机的wlanip才行。
这个问题也在和鸿蒙方沟通,待解决。
记个TODO.

文件传输

命令说明
file send local remote从本地发送文件至远端设备
file recv remote local从远端设备发送文件至本地

从本地电脑发送文件至手机

$ hdc file send ~/layout_407568854.json /data/local/tmp/layout_407568854.json

FileTransfer finish, Size:71792, File count = 1, time:24ms rate:2991.33kB/s

从手机拷贝文件至本地电脑

$ hdc file recv /data/local/tmp/layout_407568854.json ~/layout_407568854.json

[I][2024-05-28 20:15:45] HdcFile::TransferSummary success
FileTransfer finish, Size:71792, File count = 1, time:12ms rate:5982.67kB/s

UI模拟操作(点击滑动等)

支持操作类型:点击 双击 长按 慢滑 快滑 拖拽 输入文字 KeyEvent

配置参数名配置参数含义配置参数取值示例
click模拟单击操作point_x (必选参数,点击x坐标点)
point_y (必选参数,点击y坐标点)
hdc shell uitest uiInput click point_x point_y
doubleClick模拟双击操作point_x (必选参数,双击x坐标点)
point_y (必选参数,双击y坐标点)
hdc shell uitest uiInput doubleClick point_x point_y
longClick模拟长按操作point_x (必选参数,长按x坐标点)
point_y (必选参数,长按y坐标点)
hdc shell uitest uiInput longClick point_x point_y
fling模拟快滑操作from_x (必选参数,滑动起点x坐标)
from_y(必选参数,滑动起点y坐标)
to_x(必选参数,滑动终点x坐标)
to_y(必选参数,滑动终点y坐标)
swipeVelocityPps_ (可选参数,滑动速度,取值范围: 200-40000, 默认值: 600, 单位: px/s)
stepLength(可选参数,滑动步长,默认值:滑动距离/50, 单位: px)
hdc shell uitest uiInput fling from_x from_y to_x to_y swipeVelocityPps_ stepLength
swipe模拟慢滑操作from_x (必选参数,滑动起点x坐标)
from_y(必选参数,滑动起点y坐标)
to_x(必选参数,滑动终点x坐标)
to_y(必选参数,滑动终点y坐标)
swipeVelocityPps_ (可选参数,滑动速度,取值范围: 200-40000, 默认值: 600, 单位: px/s)
hdc shell uitest uiInput swipe from_x from_y to_x to_y swipeVelocityPps_
drag模拟拖拽操作from_x (必选参数,拖拽起点x坐标)
from_y(必选参数,拖拽起点y坐标)
to_x(必选参数,拖拽终点x坐标)
to_y(必选参数,拖拽终点y坐标)
swipeVelocityPps_ (可选参数,滑动速度,取值范围: 200-40000, 默认值: 600, 单位: px/s)
hdc shell uitest uiInput drag from_x from_y to_x to_y swipeVelocityPps_
dircFling模拟指定方向滑动操作direction (可选参数,滑动方向,可选值: [0,1,2,3], 滑动方向: [左,右,上,下],默认值: 0)
swipeVelocityPps_ (可选参数,滑动速度,取值范围: 200-40000, 默认值: 600, 单位: px/s)
stepLength(可选参数,滑动步长,默认值:滑动距离/50, 单位: px)
hdc shell uitest uiInput dircFling direction swipeVelocityPps_ stepLength
inputText模拟输入框输入文本操作point_x (必选参数,输入框x坐标点)
point_y (必选参数,输入框y坐标点)
input(输入文本)
hdc shell uitest uiInput inputText point_x point_y text
keyEvent模拟实体按键事件(如:键盘,电源键,返回上一级,返回桌面等),以及组合按键操作keyID (必选参数,实体按键对应ID)
keyID2 (可选参数,实体按键对应ID)
hdc shell uitest uiInput keyEvent keyID

举例

//点击
hdc shell uitest uiInput click 100 100

//双击
hdc shell uitest uiInput doubleClick 100 100

//长按
hdc shell uitest uiInput longClick 100 100

//快滑
hdc shell uitest uiInput fling 10 10 200 200 500

//慢滑
hdc shell uitest uiInput swipe 10 10 200 200 500

//拖拽
hdc shell uitest uiInput drag 10 10 100 100 500

//左滑
hdc shell uitest uiInput dircFling 0 500

//右滑
hdc shell uitest uiInput dircFling 1 600

//上滑
hdc shell uitest uiInput dircFling 2

//下滑
hdc shell uitest uiInput dircFling 3

//输入框输入
hdc shell uitest uiInput inputText 100 100 hello

//返回主页
hdc shell uitest uiInput keyEvent Home

//返回上一步
hdc shell uitest uiInput keyEvent Back

//组合键粘贴操作
hdc shell uitest uiInput keyEvent 2072 2038

keyEvent映射表可以参考这个文档:https://docs.openharmony.cn/pages/v4.1/en/application-dev/reference/apis-input-kit/js-apis-keycode.md

屏幕截图

hdc提供了两种截图命令

方式一

$ hdc shell uitest screenCap
// 默认存储路径:/data/local/tmp,文件名:时间戳 + .png。

$ hdc shell uitest screenCap -p /data/local/tmp/1.png
// 指定存储路径和文件名。

【推荐】方式二

$ hdc shell snapshot_display -f /data/local/tmp/2.jpeg
// 截图完成后可以通过 hdc file recv 命令导入到本地

方式二的截图性能效率远远高于方式一

屏幕录屏

相关hdc命令还未支持,官方在开发中。。。

我这边通过python脚本实现了录屏功能,使用方法如下

cd awesome-hdc/scripts
pip3 install -r requirements.txt

python3 screen_recroding.py

打开Scheme (URL)

$ hdc shell aa start -U http://www.baidu.com
start ability successfully.

$ hdc shell aa start -U kwai://home

获取页面布局信息(控件树)

$ hdc shell uitest dumpLayout -p {saveDumpPath}   # 运行命令前需要手动打开app,进入对应页面

DumpLayout saved to:/data/local/tmp/layout_407568854.json
  • -p表示控件树保存的目录,如果不指定,则默认保存在手机的/data/local/tmp目录
    /data/local/tmp/layout_407568854.json文件内容如下:
{
    "attributes": {
        "accessibilityId": "",
        "bounds": "[0,0][1260,2720]",
        "checkable": "",
        "checked": "",
        "clickable": "",
        "description": "",
        "enabled": "",
        "focused": "",
        "hostWindowId": "",
        "id": "",
        "key": "",
        "longClickable": "",
        "origBounds": "",
        "scrollable": "",
        "selected": "",
        "text": "",
        "type": ""
    },
    "children": [
    	
      ...
      
    ]

录制用户操作

将当前界面操作记录到/data/local/tmp/layout/record.csv,结束录制操作使用Ctrl+C结束录制

$  hdc shell uitest uiRecord record

windowBounds : (0,0,1260,2720)
Current ForAbility :com.kuaishou.hmapp, EntryAbility
The result will be written in csv file at location: /data/local/tmp/layout/record.csv
Started Recording Successfully...
click , fingerNumber:1 ,
	finger1:click:  at Point(x:557, y:1542) ; from Point(x:557, y:1542)  to Point(x:557, y:1542) ;
click , fingerNumber:1 ,
	finger1:click:  at Point(x:550, y:1638) ; from Point(x:550, y:1638)  to Point(x:550, y:1638) ;
fling , fingerNumber:1 ,
	finger1:from Point(x:409, y:1916)  to Point(x:370, y:1528) ; Off-hand speed:1415.42, Step length:34;
fling , fingerNumber:1 ,
	finger1:from Point(x:400, y:1886)  to Point(x:389, y:1586) ; Off-hand speed:1995.97, Step length:31;
home , fingerNumber:1 ,
	finger1:from Widget(id: , type: Text, text: state: didAppear,
 feedId: 5218827670987295481,
 feedType: 3,
 ServerExpTag: feed_photo|5218827670987295481|1499501607|1_u/2003373606202106162_bs54357,
 ) ;  to Point(x:615, y:2338) ;

支持两种方式查看数据:

  • uiRecord record, 将事件的位置坐标写入文件
  • uiRecord read, 将文件内容打印到控制台

录制完成后,再将csv文件拷贝到电脑上

$ hdc file recv  /data/local/tmp/layout/record.csv ~/record.csv

record数据字段含义请参考如下示例数据

{
  "ABILITY": "com.ohos.launcher.MainAbility", // 前台应用界面
  "BUNDLE": "com.ohos.launcher", // 操作应用
  "CENTER_X": "", // 模拟捏合中心X, pinch事件
  "CENTER_Y": "", // 模拟捏合中心Y, pinch事件
  "EVENT_TYPE": "pointer", //  
  "LENGTH": "0", // 总体步长
  "OP_TYPE": "click", //事件类型,当前支持点击、双击、长按、拖拽、捏合、滑动、抛滑动作录制
  "VELO": "0.000000", // 离手速度
  "direction.X": "0.000000",// 总体移动X方向
  "direction.Y": "0.000000", // 总体移动Y方向
  "duration": 33885000.0, // 手势操作持续时间
  "fingerList": [{
      "LENGTH": "0", // 总体步长
      "MAX_VEL": "40000", // 最大速度
      "VELO": "0.000000", // 离手速度
      "W1_BOUNDS": "{"bottom":361,"left":37,"right":118,"top":280}", // 起点控件bounds
      "W1_HIER": "ROOT,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0", // 起点控件hierarchy
      "W1_ID": "", // 起点控件id
      "W1_Text": "", // 起点控件text
      "W1_Type": "Image", // 起点控件类型
      "W2_BOUNDS": "{"bottom":361,"left":37,"right":118,"top":280}", // 终点控件bounds
      "W2_HIER": "ROOT,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0", // 终点控件hierarchy
      "W2_ID": "", // 终点控件id
      "W2_Text": "", // 终点控件text
      "W2_Type": "Image", // 终点控件类型
      "X2_POSI": "47", // 终点X
      "X_POSI": "47", // 起点X
      "Y2_POSI": "301", // 终点Y
      "Y_POSI": "301", // 起点Y
      "direction.X": "0.000000", // x方向移动量
      "direction.Y": "0.000000" // Y方向移动量
  }],
  "fingerNumber": "1" //手指数量
}

系统日志(log)

$ hdc hilog -h

Usage:
-h --help
  Show all help information.
  Show single help information with option:
  query/clear/buffer/stats/persist/private/kmsg/flowcontrol/baselevel/domain/combo
Querying logs options:
  No option performs a blocking read and keeps printing.
  -x --exit
    Performs a non-blocking read and exits when all logs in buffer are printed.
  -a , --head=
    Show n lines logs on head of buffer.
  -z , --tail=
    Show n lines logs on tail of buffer.
  -t , --type=
    Show specific type/types logs with format: type1,type2,type3
    Don't show specific type/types logs with format: ^type1,type2,type3
    Type coule be: app/core/init/kmsg, kmsg can't combine with others.
    Default types are: app,core,init.
  -L , --level=
    Show specific level/levels logs with format: level1,level2,level3
    Don't show specific level/levels logs with format: ^level1,level2,level3
    Long and short level string are both accepted
    Long level string coule be: DEBUG/INFO/WARN/ERROR/FATAL.
    Short level string coule be: D/I/W/E/F.
    Default levels are all levels.
  -D , --domain=
    Show specific domain/domains logs with format: domain1,domain2,doman3
    Don't show specific domain/domains logs with format: ^domain1,domain2,doman3
    Max domain count is 5.
    See domain description at the end of this message.
  -T , --tag=
    Show specific tag/tags logs with format: tag1,tag2,tag3
    Don't show specific tag/tags logs with format: ^tag1,tag2,tag3
    Max tag count is 10.
  -P , --pid=
    Show specific pid/pids logs with format: pid1,pid2,pid3
    Don't show specific domain/domains logs with format: ^pid1,pid2,pid3
    Max pid count is 5.
  -e , --regex=
    Show the logs which match the regular expression .
  -v , --format=
    Show logs in different formats, options are:
      color or colour      display colorful logs by log level.i.e.
        DEBUG        INFO        WARN        ERROR       FATAL
      time format options are(single accepted):
        time       display local time, this is default.
        epoch      display the time from 1970/1/1.
        monotonic  display the cpu time from bootup.
      time accuracy format options are(single accepted):
        msec       display time by millisecond, this is default.
        usec       display time by microsecond.
        nsec       display time by nanosecond.
      year       display the year when -v time is specified.
      zone       display the time zone when -v time is specified.
    Different types of formats can be combined, such as:
    -v color -v time -v msec -v year -v zone.
-r
  Remove all logs in hilogd buffer, advanced option:
  -t , --type=
    Remove specific type/types logs in buffer with format: type1,type2,type3
    Type coule be: app/core/init/kmsg.
    Default types are: app,core
-g
  Query hilogd buffer size, advanced option:
  -t , --type=
    Query specific type/types buffer size with format: type1,type2,type3
    Type coule be: app/core/init/kmsg.
    Default types are: app,core
-G , --buffer-size=
  Set hilogd buffer size,  could be number or number with unit.
  Unit could be: B/K/M/G which represents Byte/Kilobyte/Megabyte/Gigabyte.
   range: [64.0K,64.0K].
  Advanced option:
  -t , --type=
    Set specific type/types log buffer size with format: type1,type2,type3
    Type coule be: app/core/init/kmsg.
    Default types are: app,core
  **It's a persistant configuration**
-s, --statistics
  Query log statistic information.
  Set param persist.sys.hilog.stats true to enable statistic.
  Set param persist.sys.hilog.stats.tag true to enable statistic of log tag.
-S
  Clear hilogd statistic information.
-w ,--write=
  Log persistance task control, options are:
    query      query tasks informations
    stop       stop all tasks
    start      start one task
    clear      clear /data/log/hilog/hilog*.gz
  Persistance task is used for saving logs in files.
  The files are saved in directory: /data/log/hilog/
  Advanced options:
  -f , --filename=
    Set log file name, name should be valid of Linux FS.
  -l , --length=
    Set single log file size.  could be number or number with unit.
    Unit could be: B/K/M/G which represents Byte/Kilobyte/Megabyte/Gigabyte.
     range: [64.0K, 512.0M].
  -n , --number
    Set max log file numbers, log file rotate when files count over this number.
     range: [2, 1000].
  -m ,--stream=
    Set log file compressed algorithm, options are:
      none       write file with non-compressed logs.
      zlib       write file with zlib compressed logs.
  -j , --jobid
    Start/stop specific task of .
     range: [10, 0xffffffff).
  User can start task with options (t/L/D/T/P/e/v) as if using them when "Query logs" too.
  **It's a persistant configuration**
-p , --privacy 
  Set HILOG api privacy formatter feature on or off.
  **It's a temporary configuration, will be lost after reboot**
-k , --kmsg 
  Set hilogd storing kmsg log feature on or off
  **It's a persistant configuration**
-Q 
  Set log flow-control feature on or off, options are:
    pidon     process flow control on
    pidoff    process flow control off
    domainon  domain flow control on
    domainoff domain flow control off
  **It's a temporary configuration, will be lost after reboot**
-b , --baselevel=
  Set global loggable level to 
  Long and short level string are both accepted.
  Long level string coule be: DEBUG/INFO/WARN/ERROR/FATAL/X.
  Short level string coule be: D/I/W/E/F/X.
  X means that loggable level is higher than the max level, no log could be printed.
  Advanced options:
  -D , --domain=
    Set specific domain loggable level.
    See domain description at the end of this message.
  -T , --tag=
    Set specific tag loggable level.
    The priority is: tag level > domain level > global level.
  **It's a temporary configuration, will be lost after reboot**
The first layer options can't be used in combination, ILLEGAL expamples:
    hilog -S -s; hilog -w start -r; hilog -p on -k on -b D


Domain description:
  Log type "core" & "init" are used for OS subsystems, the range is [0xd000000,  0xd0fffff]
  Log type "app" is used for applications, the range is [0x0,  0xffff]
  To reduce redundant info when printing logs, only last five hex numbers of domain are printed
  So if user wants to use -D option to filter OS logs, user should add 0xD0 as prefix to the printed domain:
  Exapmle: hilog -D 0xD0xxxxx
  The xxxxx is the domain string printed in logs.


Dictionary description:
-d , --dictionary=
  Set elf file path, name should be valid of Linux FS.
  Rescan the elf file in the system to generate a full data dictionary file

导出日志

$ hdc file recv data/log/hilog/ ./

导出crash日志

hdc file recv data/log/faultlog/faultlogger/ ./

hidumper工具

$ hdc shell hidumper -h

usage:
  -h                          |help text for the tool
  -lc                         |a list of system information clusters
  -ls                         |a list of system abilities
  -c                          |all system information clusters
  -c [base system]            |system information clusters labeled "base" and "system"
  -s                          |all system abilities
  -s [SA0 SA1]                |system abilities labeled "SA0" and "SA1"
  -s [SA] -a ['-h']           |system ability labeled "SA" with arguments "-h" specified
  -e                          |faultlogs of crash history
  --net [pid]                 |dump network information; if pid is specified, dump traffic usage of specified pid
  --storage [pid]             |dump storage information; if pid is specified, dump /proc/pid/io
  -p                          |processes information, include list and information of processes and threads
  -p [pid]                    |dump threads under pid, includes smap, block channel, execute time, mountinfo
  --cpuusage [pid]            |dump cpu usage by processes and category; if PID is specified, dump category usage of specified pid
  --cpufreq                   |dump real CPU frequency of each core
  --mem [pid]                 |dump memory usage of total; dump memory usage of specified pid if pid was specified
  --zip                       |compress output to /data/log/hidumper
  --mem-smaps pid [-v]        |display statistic in /proc/pid/smaps, use -v specify more details
  --mem-jsheap pid [-T tid] [--gc]  |triggerGC and dumpHeapSnapshot under pid and tid

list system abilities

$ hdc shell hidumper -ls

System ability list:
SystemAbilityManager             RenderService                    AbilityManagerService            
DataObserverMgr                  UriPermissionMgr                 AccountMgr                       
BundleMgr                        FormMgr                          ApplicationManagerService        
AccessibilityManagerService      UserIdmService                   UserAuthService                  
AuthExecutorMgrService           PinAuthService                   FaceAuthService                  
FingerprintAuthService           WifiDevice                       WifiHotspot                      
WifiP2p                          WifiScan                         1125                             
1126                             NetConnManager                   NetPolicyManager                 
NetStatsManager                  NetTetheringManager              VPNManager                       
EthernetManager                  NetsysNative                     NetsysExtService                 
DistributedNet                   1181                             HiviewService                    
HiviewFaultLogger                HiviewSysEventService            1204                             
XperfTraceService                HiDumperService                  XpowerManager                    
HiDumperCpuService               DistributedKvData                ContinuationManagerService       
ResourceSched                    BackgroundTaskManager            WorkSchedule                     
ComponentSchedServer             SocPerfService                   DeviceUsageStatistics            
MemoryManagerService             SuspendManager                   AbnormalEfficiencyManager        
ConcurrentTaskService            ResourceQuotaControl             DeviceStandbyService             
TaskHeartbeatMgrService          2901                             DeviceStatusService              
2903                             2904                             2908                             
AudioDistributed                 PlayerDistributedService         CameraService                    
AudioPolicyService               AVSessionService                 AVCodecService                   
MediaKeySystemService            MultimodalInput                  DistributedNotificationService   
CommonEventService               PowerManagerService              BatteryService                   
ThermalService                   BatteryStatisticsService         DisplayPowerManagerService       
AccessTokenManagerService        PrivacyManagerService            KeystoreService                  
DeviceThreatDetectionService     RiskAnalysisManagerService       DataCollectManagerService        
DlpCreService                    SensorService                    MiscDeviceService                
PasteboardService                TimeService                      InputMethodService               
ScreenlockService                WallpaperManagerService          ParamWatcher                     
TelephonyCallManager             TelephonyCellularCall            TelephonyCellularData            
TelephonySmsMms                  TelephonyStateRegistry           TelephonyCoreService             
4011                             TelephonyIms                     ModuleUpdateService              
UsbService                       WindowManagerService             DisplayManagerService            
DSoftbus                         DeviceAuthService                DeviceManagerService             
StorageDaemon                    StorageManager                   HdfDeviceServiceManager          
CloudFileDaemonService           EcologicalRuleManager            UiService                        
UiAppearanceService              CaDaemon                         AssetService                     
9527                             65537                            65570                            
65728                            65777                            65830                            
65850                            65888                            65904                            
65926                            65958                            65962                            
66070                            66090                            70633  

获取到abilities后,就可以指定service获取相关的信息。 比如通过RenderService获取一些信息

$ hdc shell hidumper -s RenderService             

-------------------------------[ability]-------------------------------


----------------------------------RenderService---------------------------------
------Graphic2D--RenderSerice ------
Usage:
 h                             |help text for the tool
screen                         |dump all screen infomation in the system
surface                        |dump all surface information
composer fps                   |dump the fps info of composer
[surface name] fps             |dump the fps info of surface
composer fpsClear              |clear the fps info of composer
[windowname] fps               |dump the fps info of window
[windowname] hitchs            |dump the hitchs info of window
[surface name] fpsClear        |clear the fps info of surface
nodeNotOnTree                  |dump nodeNotOnTree info
allSurfacesMem                 |dump surface mem info
RSTree                         |dump RSTree info
EventParamList                 |dump EventParamList info
allInfo                        |dump all info
dumpMem                        |dump Cache
trimMem cpu/gpu/shader         |release Cache
surfacenode [id]               |dump node info
fpsCount                       |dump the refresh rate counts info
clearFpsCount                  |clear the refresh rate counts info

RenderService

获取分辩率

$ hdc shell hidumper -s RenderService -a screen 

-------------------------------[ability]-------------------------------


----------------------------------RenderService---------------------------------
-- ScreenInfo
screen[0]: id=0, powerstatus=POWER_STATUS_OFF, backlight=21, screenType=EXTERNAL_TYPE, render size: 1260x2720, physical screen resolution: 1260x2720, isvirtual=false, skipFrameInterval_:1

  supportedMode[0]: 1260x2720, refreshrate=120
  supportedMode[1]: 1260x2720, refreshrate=90
  supportedMode[2]: 1260x2720, refreshrate=60
  supportedMode[3]: 1260x2720, refreshrate=30
  activeMode: 1260x2720, refreshrate=60
  capability: name=, phywidth=72, phyheight=156,supportlayers=12, virtualDispCount=0, propCount=0, type=DISP_INTF_HDMI, supportWriteBack=false

获取帧率
首先执行如下命令进入到shell环境

$ hdc shell

然后执行hidumper [surface name] fps , 例如composer fps

$ hidumper -s RenderService -a "composer fps"

-------------------------------[ability]-------------------------------


----------------------------------RenderService---------------------------------

-- The recently fps records info of screens:

The fps of screen [Id:0] is:
107537646652857
107537663200253
107537679747128
107537696352336
107537712846086
107537729390357
107537745974211
107537762468482
107537779015357
107537795561190
107537812110148
107537828651815
107537845349732
...

DisplayManagerService

$ hdc shell hidumper -s DisplayManagerService

-------------------------------[ability]-------------------------------


----------------------------------DisplayManagerService----------------------------------
Usage:
 -h                             |help text for the tool
 -a                             |dump all screen information in the system
 -z                             |switch to fold half status
 -y                             |switch to expand status
 -p                             |switch to fold status
 -f                             |get to fold status

PowerManagerService

$ hdc shell hidumper -s PowerManagerService

-------------------------------[ability]-------------------------------


----------------------------------PowerManagerService----------------------------------
Power manager dump options:
  [-h] [-runninglock]
  description of the cmd option:
    -a: show dump info of all power modules.
    -h: show this help.
    -r: show the information of runninglock.
    -s: show the information of power state machine.
    -d: show power off dialog.

例如上文提到的获取屏幕状态

$ hdc shell hidumper -s PowerManagerService -a -s

BatteryService

$ hdc shell hidumper -s BatteryService

-------------------------------[ability]-------------------------------


----------------------------------BatteryService----------------------------------
Usage:
      -h: dump help
      -i: dump battery info
      -u: unplug battery charging state
      -r: reset battery state
      --capacity : set battery capacity, the capacity range [0, 100]
      --uevent : set battery uevent

例如上文提到的获取电量温度

$ hdc shell hidumper -s BatteryService -a -i                

NetConnManager

$ hdc shell hidumper -s NetConnManager

-------------------------------[ability]-------------------------------


----------------------------------NetConnManager----------------------------------
Net connect Info:
	defaultNetSupplier_ is nullptr
	SupplierId:
	NetId: 0
	ConnStat: 0
	IsAvailable:
	IsRoaming: 0
	Strength: 0
	Frequency: 0
	LinkUpBandwidthKbps: 0
	LinkDownBandwidthKbps: 0
	Uid: 0
Dns result Info:
	netId: 0
	totalReports: 2
	failReports: 2

StorageManager

aa工具

Ability assistant(Ability助手,简称为aa),是实现应用及测试用例启动功能的工具,为开发者提供基本的应用调试和测试能力,例如启动应用组件、强制停止进程、打印应用组件相关信息等。

$ hdc shell aa help
usage: aa  
These are common aa commands list:
  help                        list available commands
  start                       start ability with options
  stop-service                stop service with options
  dump                        dump the ability info
  force-stop     force stop the process with bundle name
  attach                      attach application to enter debug mdoe
  detach                      detach application to exit debug mode
  test                        start the test framework with options
  appdebug                    set / cancel / get waiting debug status

start

stop-service

force-stop

test

attach

detach

appdebug

详细介绍请参考文档:https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/aa-tool.md

bm工具

Bundle Manager(包管理工具,简称bm)是实现应用安装、卸载、更新、查询等功能的工具,bm为开发者提供基本的应用安装包的调试能力,例如:安装应用,卸载应用,查询安装包信息等。

$ hdc shell bm help
usage: bm  
These are common bm commands list:
  help         list available commands
  install      install a bundle with options
  uninstall    uninstall a bundle with options
  dump         dump the bundle info
  get          obtain device udid
  quickfix     quick fix, including query and install
  compile      Compile the software package
  dump-overlay dump overlay info of the specific overlay bundle
  dump-target-overlay dump overlay info of the specific target bundle
  dump-dependencies dump dependencies by given bundle name and module name
  dump-shared dump inter-application shared library information by bundle name
  clean        clean the bundle data

install

uninstall

dump

clean

enable

disable

get

详细介绍请参考文档:https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/bm-tool.md

param工具

param是为开发人员提供用于操作系统参数的工具,该工具只支持标准系统。

$ hdc shell param                                   
Command list:
    param ls [-r] [name]                            --display system parameter
    param get [name]                                --get system parameter
    param set name value                            --set system parameter
    param wait name [value] [timeout]               --wait system parameter
    param dump [verbose]                            --dump system parameter
    param shell [-p] [name] [-u] [username] [-g] [groupname]    --shell system parameter
    param save    

详细介绍请参考文档:https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/param-tool.md

Instrument Test

主要用来做APP 的UI自动化测试,将应用测试包安装到测试设备上,在cmd窗口中执行aa命令,完成对用例测试。

aa test命令执行配置参数

执行参数全写执行参数缩写执行参数含义执行参数示例
–bundleName-b应用 Bundle 名称-b com.test.example
–packageName-p应用模块名,适用于 FA 模型应用-p com.test.example.entry
–moduleName-m应用模块名,适用于 STAGE 模型应用-m entry
NA-s特定参数,以 键值对方式传入-s unittest /ets/testrunner/OpenHarmonyTestRunner
$ hdc shell aa test -h
usage: aa test 
options list:
  -h, --help                                             list available commands
  -b  -s unittest              start the test framework with options
                  [-p ]                    the name of package with test-runner, required for the FA model
                  [-m ]                     the name of module with test-runner, required for the STAGE model
                  [-s class ]
                  [-s level ]
                  [-s size ]
                  [-s testType ]
                  [-s timeout ]
                  [-s  ]
                  [-w ]
                  [-D]

举例

$ hdc shell aa test -b com.example.myapplication -m entry_test -s unittest /ets/testrunner/OpenHarmonyTestRunner -s class UiTestDemo timeout 15000

查看测试结果
cmd模式执行过程,会打印如下相关日志信息。

OHOS_REPORT_STATUS: class=testStop
OHOS_REPORT_STATUS: current=1
OHOS_REPORT_STATUS: id=JS
OHOS_REPORT_STATUS: numtests=447
OHOS_REPORT_STATUS: stream=
OHOS_REPORT_STATUS: test=stop_0
OHOS_REPORT_STATUS_CODE: 1

OHOS_REPORT_STATUS: class=testStop
OHOS_REPORT_STATUS: current=1
OHOS_REPORT_STATUS: id=JS
OHOS_REPORT_STATUS: numtests=447
OHOS_REPORT_STATUS: stream=
OHOS_REPORT_STATUS: test=stop_0
OHOS_REPORT_STATUS_CODE: 0
OHOS_REPORT_STATUS: consuming=4

OHOS_REPORT_RESULT: stream=Tests run: 447, Failure: 0, Error: 1, Pass: 201, Ignore: 245
OHOS_REPORT_CODE: 0

OHOS_REPORT_RESULT: breakOnError model, Stopping whole test suite if one specific test case failed or error
OHOS_REPORT_STATUS: taskconsuming=16029

性能工具

SmartPerf是一款基于系统开发的性能功耗测试工具,操作简单易用。工具可以检测性能、功耗相关指标,包括FPSCPUGPURAMTemp等,通过量化的指标项了解应用性能状况。在开发过程中,使用的可能是有屏或无屏设备,对此SmartPerf提供了两种方式:分别是SmartPerf-DeviceSmartPerf-DaemonSmartPerf-Device适用于有屏设备,支持可视化操作。测试时是通过悬浮窗的开始和暂停来实时展示性能指标数据,保存后可生成数据报告,在报告中可分析各指标数据详情。SmartPerf-Daemon支持shell命令行方式,同时适用于有屏和无屏设备。

  • CPU:每秒读取一次设备节点下CPU大中小核的频点和各核使用率,衡量应用占用CPU资源的情况,占用过多的CPU资源会导致芯片发烫。
  • GPU:每秒读取一次设备节点下GPU的频点和负载信息,衡量应用占用GPU资源的情况,当GPU占用过多时,会导致性能下降,应用程序的运行速度变慢。
  • FPS:应用界面每秒刷新次数,衡量应用画面的流畅度,FPS越高表示图像流畅度越好,用户体验也越好。
  • POWER:每秒读取一次设备节点下的电流及电压信息。
  • TEMP:每秒读取一次设备节点下电池温度、系统芯片温度等信息。
  • RAM:每秒读取一次应用进程的实际物理内存,衡量应用的内存占比情况。
  • snapshot:每秒截取一张应用界面截图。
$ hdc shell

# SP_daemon

// 查看daemon进程是否存在
# ps -ef | grep SP_daemon
root          1584     1 0 21:50:05 ?     00:00:00 SP_daemon
root          1595  1574 3 21:51:02 pts/0 00:00:00 grep SP_daemon

执行查看帮助命令

# SP_daemon --help
OpenHarmony performance testing tool SmartPerf command-line version
Usage: SP_daemon [options] [arguments]

options:
 -N             set the collection times(default value is 0) range[1,2147483647], for example: -N 10
 -PKG           set package name, must add, for example: -PKG ohos.samples.ecg
 -c             get device CPU frequency and CPU usage, process CPU usage and CPU load ..
 -g             get device GPU frequency and GPU load
 -f             get app refresh fps(frames per second) and fps jitters and refreshrate
 -profilerfps   get refresh fps and timestamp
 -sections      set collection time period(using with profilerfps)
 -t             get remaining battery power and temperature..
 -p             get battery power consumption and voltage
 -r             get process memory and total memory
 -snapshot      get screen capture
 -net           get uplink and downlink traffic
 -start         collection start command
 -stop          collection stop command
 -VIEW          set layler, for example: -VIEW DisplayNode
 -screen        get screen resolution
 -OUT           set csv output path.
 -d             get device DDR information
 -m             get other memory
example:
SP_daemon -N 20 -c -g -t -p -r -m -net -snapshot -d
SP_daemon -N 20 -PKG ohos.samples.ecg -c -g -t -p -f -r -m -net -snapshot -d
SP_daemon -start -c
SP_daemon -stop
SP_daemon -screen

基于hdc命令行的SmartPerf性能工具使用详细文档参考这个:https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/application-test/smartperf-guidelines.md

参考链接

  • https://gitee.com/openharmony/developtools_hdc
  • https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V2/ide-command-line-hdc-0000001237908229-V2#section116322265308
  • https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/application-test/smartperf-guidelines.md
  • https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/aa-tool.md
  • https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/bm-tool.md
  • https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/tools/param-tool.md
  • https://github.com/mzlogin/awesome-adb

本文地址:https://www.vps345.com/9121.html

搜索文章

Tags

docker 容器 运维 java-rabbitmq java PV计算 带宽计算 流量带宽 服务器带宽 上行带宽 上行速率 什么是上行带宽? CC攻击 攻击怎么办 流量攻击 DDOS攻击 服务器被攻击怎么办 源IP 开源 自动化 n8n dity make 服务器 linux rag ragflow ollama 大模型部署 人工智能 ubuntu 无人机 机器人 linux环境变量 搜索引擎 程序员 大模型应用 prompt LLM 大模型 AI Dify 安全 qt linuxdeployqt 打包部署程序 appimagetool pytorch tensorflow 大模型面经 职场和发展 Deepseek 大模型学习 数据分析 机器学习 计算机视觉 数据库 postgresql pgpool centos 嵌入式硬件 边缘计算 android studio 交互 后端 websocket android 区块链 分布式账本 web3 智能合约 信任链 共识算法 macos MacMini Mac 迷你主机 mini Apple ai nlp Agent DeepSeek llama CrewAI python chatgpt gpu算力 flutter Google pay Apple pay Linux DNS uniapp 网络 vue 硬件工程 单片机 物联网 Linux 维护模式 深度学习 网络协议 知识图谱 大模型教程 AI大模型 tcp/ip onlyoffice 在线office 相机 milvus 远程连接 vscode 智能手机 计算机网络 web安全 网络安全 php 技能大赛 pycharm flask deepseek 科技 大数据 云计算 debian wps 安卓 windows YOLO ide MQTT mosquitto 消息队列 ffmpeg 开发语言 操作系统 Qwen3 qwen3 32b vllm 本地部署 github ESXi vmware 虚拟机 vim c++ opencv nac 802.1 portal 阿里云 spring boot spring gitlab 华为 智能路由器 MCP 区块链项目 harmonyos 华为云 华为od nginx fiddler 爬虫 http chrome 学习 云原生 iventoy VmWare OpenEuler r语言 数据挖掘 数据可视化 c语言 微信开放平台 微信公众平台 微信公众号配置 笔记 系统架构 Docker引擎已经停止 Docker无法使用 WSL进度一直是0 镜像加速地址 redis 分布式 缓存 服务器安全 网络安全策略 防御服务器攻击 安全威胁和解决方案 程序员博客保护 数据保护 安全最佳实践 Apache Beam 批流统一 性能优化 案例展示 数据分区 容错机制 WSL2 上安装 Ubuntu 网页服务器 web服务器 Nginx top Linux top top命令详解 top命令重点 top常用参数 卸载 软件 列表 ssh vue.js react.js 前端 多线程服务器 TCP服务器 qt项目 qt项目实战 qt教程 oracle ShapeFile GeoJSON Python django kubernetes go HTTP 服务器控制 ESP32 DeepSeek 服务器扩容没有扩容成功 gpt transformer 自然语言处理 conda rocketmq ssh漏洞 ssh9.9p2 CVE-2025-23419 远程 命令 执行 sshpass 操作 政务 分布式系统 监控运维 Prometheus Grafana springsecurity6 oauth2 授权服务器 前后端分离 ruoyi tidb GLIBC 架构 mysql 编辑器 鸿蒙 鸿蒙系统 前端框架 主从复制 kylin ROS 自动驾驶 部署 GIS 遥感 WebGIS 大模型推理 mcu BMC IPMI 带外管理 ssl Dell HPE 联想 浪潮 mamba mcp mcp协议 go-zero mcp服务器 fpga开发 appium 软件测试 自动化测试 功能测试 程序人生 车载系统 k8s 金融 算法 神经网络 卷积神经网络 oceanbase rc.local 开机自启 systemd 麒麟 环境迁移 Windows ai工具 存储维护 NetApp存储 EMC存储 语言模型 servlet hadoop big data 关系型 udp virtualenv arm 经验分享 线程 多线程 eureka spring cloud https AI-native elasticsearch 7-zip 串口服务器 万物互联 工业自动化 工厂改造 CH340 串口驱动 CH341 uart 485 Python教程 pycharm安装 maven 音视频 kvm qemu libvirt pip Kali 渗透 c# AIGC ansible playbook 自动化运维 p2p 考研 数据结构 ddos UEFI Legacy MBR GPT U盘安装操作系统 jvm 游戏 目标检测 YOLOv12 网络结构图 yaml Ultralytics 可视化 git 学习方法 蓝桥杯 jenkins devops LSTM tomcat muduo 网络库 其他 具身智能 强化学习 burpsuite 安全工具 mac安全工具 burp安装教程 渗透工具 wsl2 wsl vsxsrv 程序 编程 内存 性能分析 ragflow 源码启动 1024程序员节 agi Docker Docker Compose Kubernetes javascript edge cursor 网工 运维开发 Deepseek-R1 私有化部署 推理模型 智慧农业 开源鸿蒙 团队开发 grep Ubuntu20.04 2.35 webpack 群晖 低代码 游戏引擎 yolov5 IO ACL 流量控制 基本ACL 网络管理 规则配置 H3C 云电竞 云电脑 todesk 驱动开发 arm开发 系统安全 kafka ipython Cursor 中兴光猫 换光猫 网络桥接 自己换光猫 typescript SenseVoice CosyVoice mysql安装报错 windows拒绝安装 企业微信 gnu 嵌入式 linux驱动开发 vmamba hdc 鸿蒙NEXT comfyui comfyui教程 图文教程 VMware虚拟机 macOS系统安装教程 macOS最新版 虚拟机安装macOS Sequoia node.js visualstudio intellij-idea 面试 智能驾驶 BEVFusion Ubuntu pyautogui eclipse prometheus grafana 图形化界面 网络工程师 软考 2024 2024年上半年 下午真题 答案 腾讯云 AI编程 visual studio code 镜像源 大模型入门 LLM Web APP Streamlit word图片自动上传 word一键转存 复制word图片 复制word图文 复制word公式 粘贴word图文 粘贴word公式 IM即时通讯 QQ 微信 剪切板对通 HTML FORMAT matlab AI员工 Playwright pythonai PlaywrightMCP 重启 排查 系统重启 日志 原因 rabbitmq ruby VMware Tools vmware tools安装 vmwaretools安装步骤 vmwaretools安装失败 vmware tool安装步骤 vm tools安装步骤 vm tools安装后不能拖 vmware tools安装步骤 ArkUI ArkTS 移动端开发 小程序 openjdk Ollama WSL2 IP 地址 远程工作 mac 截图 录屏 gif 工具 课程设计 rpa Vmamba llm 镜像 docker-compose 微服务 负载均衡 LVM 磁盘分区 lvresize 磁盘扩容 pvcreate Claude Desktop Claude MCP Windows Cli MCP Apache Flume 数据采集 安装部署 配置优化 高级功能 大数据工具集成 信息与通信 oneapi adb 鲲鹏 昇腾 npu uni-app 上传视频文件到服务器 uniApp本地上传视频并预览 uniapp移动端h5网页 uniapp微信小程序上传视频 uniapp app端视频上传 uniapp uview组件库 安全漏洞 信息安全 css css3 html5 PyQt PySide6 excel word mysql离线安装 ubuntu22.04 mysql8.0 harmonyOS面试题 sdkman 源码 毕业设计 RAGFlow 计算机外设 bug notepad shell脚本免交互 expect linux免交互 gcc g++ g++13 iTerm2 cnn GoogLeNet 视频编解码 cron crontab日志 Alexnet vite vue3 防火墙 端口号 开放端口 访问列表 unity RagFlow RAG FTP服务器 v10 自定义客户端 SAS 在线预览 xlsx xls文件 在浏览器直接打开解析xls表格 前端实现vue3打开excel 文件地址url或接口文档流二进 Flask FastAPI Waitress Gunicorn uWSGI Uvicorn svn gaussdb C++软件实战问题排查经验分享 0xfeeefeee 0xcdcdcdcd 动态库加载失败 程序启动失败 程序运行权限 标准用户权限与管理员权限 jupyter 飞腾处理器 硬件架构 国产化 microsoft bash fstab maxkb ARG kotlin iphone open webui VMware zabbix 图像处理 Linux find grep MobaXterm 文件传输 docker run 数据卷挂载 环境变量 端口映射 交互模式 pdf 办公自动化 自动化生成 pdf教程 gitee 电脑 openssl 抓包工具 vnc 前端面试题 持续部署 ubuntu20.04 ros ros1 Noetic 20.04 apt 安装 工具分享 qps 高并发 网络药理学 生信 分子对接 autodock mgltools PDB PubChem tcpdump 测试工具 智能体开发 powerpoint 压力测试 大模型压力测试 EvalScope 网络攻击模型 stm32 DeepSeek-R1 API接口 远程桌面 宝塔面板 同步 备份 建站 服务器配置 jmeter ESP32 IIS服务器 IIS性能 日志监控 micropython esp32 mqtt 大文件分片上传断点续传及进度条 如何批量上传超大文件并显示进度 axios大文件切片上传详细教 node服务器合并切片 vue3大文件上传报错提示错误 vu大文件秒传跨域报错cors 镜像下载 freebsd deepseek-r1 大模型本地部署 es6 qt6.3 g726 shell 框架 NVML nvidia-smi 匿名FTP 邮件传输代理 SSL支持 chroot监狱技术 gitee go 微信小程序 notepad++ 模拟器 教程 kali 共享文件夹 yolov8 卡死 list 隐藏文件 diskgenius arkUI arkTs nohup 异步执行 selenium MAC Ubuntu DeepSeek DeepSeek Ubuntu DeepSeek 本地部署 DeepSeek 知识库 DeepSeek 私有化知识库 本地部署 DeepSeek DeepSeek 私有化部署 5G 3GPP 卫星通信 AnythingLLM AnythingLLM安装 QT 5.12.12 QT开发环境 Ubuntu18.04 集成学习 集成测试 框架搭建 Doris搭建 docker搭建Doris Doris搭建过程 linux搭建Doris Doris搭建详细步骤 Doris部署 计算生物学 生物信息学 生物信息 基因组 axure 富文本编辑器 网络爬虫 命名管道 客户端与服务端通信 jdk android-studio 京东云 DrissionPage wireshark RTSP xop RTP RTSPServer 推流 视频 Trae IDE AI 原生集成开发环境 Trae AI SSE armbian u-boot audio vue音乐播放器 vue播放音频文件 Audio音频播放器自定义样式 播放暂停进度条音量调节快进快退 自定义audio覆盖默认样式 服务器无法访问 ip地址无法访问 无法访问宝塔面板 宝塔面板打不开 YOLOv8 NPU Atlas800 A300I pro asi_bench 模型联网 API CherryStudio gitea 模拟退火算法 游戏服务器 Minecraft webrtc 录音麦克风权限判断检测 录音功能 录音文件mp3播放 小程序实现录音及播放功能 RecorderManager 解决录音报错播放没声音问题 Qualcomm WoS QNN AppBuilder 虚拟化 大模型训练/推理 推理问题 mindie apache 程序化交易 量化交易 高频交易 密码学 商用密码产品体系 chatbox 键盘 Mac内存不够用怎么办 安卓模拟器 桌面环境 unix Isaac Sim 虚拟仿真 终端工具 远程工具 打不开xxx软件 无法检查其是否包含恶意软件 软件需求 设备树 毕设 进程间通信 zip unzip cuda Ubuntu 24 常用命令 Ubuntu 24 Ubuntu vi 异常处理 Maxkb RAG技术 本地知识库 权限 知识库 本地知识库部署 DeepSeek R1 模型 Python基础 Python技巧 arcgis pygame iftop 网络流量监控 ip协议 ui 单例模式 opengl golang kernel nvm remote-ssh 显卡驱动持久化 GPU持久化 计算机学习路线 编程语言选择 企业风控系统 互联网反欺诈 DDoS攻击 SQL注入攻击 恶意软件和病毒攻击 sql 升级 CVE-2024-7347 漏洞 NAS Termux Samba 数据库系统 sqlserver 我的世界服务器搭建 live555 源码剖析 rtsp实现步骤 流媒体开发 数据库架构 数据管理 数据治理 数据编织 数据虚拟化 db oracle fusion oracle中间件 jar lighttpd安装 Ubuntu配置 Windows安装 性能测试 服务器优化 语音识别 NFC 近场通讯 智能门锁 Chatbox postman 蓝桥杯C++组 C++ 虚幻 ftp服务 文件上传 EtherCAT转Modbus EtherCAT转485网关 ECT转485串口服务器 ECT转Modbus485协议 ECT转Modbus串口网关 ECT转Modbus串口服务器 华为OD 华为OD机试真题 可以组成网络的服务器 web minio 文件存储服务器组件 localhost chrome devtools chromedriver ip java-ee 虚拟显示器 远程控制 xcode python2 ubuntu24.04 程序员创富 iot export env 变量 IP配置 netplan rime WSL resolv.conf python3.11 lsb_release /etc/issue /proc/version uname -r 查看ubuntu版本 CUPS 打印机 Qt5 js 策略模式 apt 国内源 gromacs 分子动力学模拟 MD 动力学模拟 国产数据库 瀚高数据库 数据迁移 下载安装 7z html DevOps 软件交付 数据驱动 应用场景 数据安全 CPU 使用率 系统监控工具 linux 命令 docker desktop 论文笔记 lvs Cline fastapi 回显服务器 UDP的API使用 华为认证 交换机 个人博客 雨云 NPS 宝塔面板访问不了 宝塔面板网站访问不了 宝塔面板怎么配置网站能访问 宝塔面板配置ip访问 宝塔面板配置域名访问教程 宝塔面板配置教程 dell服务器 xrdp 安全威胁分析 银河麒麟 filezilla 无法连接服务器 连接被服务器拒绝 vsftpd 331/530 npm rsyslog adobe kind windwos防火墙 defender防火墙 win防火墙白名单 防火墙白名单效果 防火墙只允许指定应用上网 防火墙允许指定上网其它禁止 媒体 aws googlecloud json firefox 测试用例 triton 模型分析 CDN GPU rustdesk 宝塔 numpy IIS 跨域请求 电路仿真 multisim 硬件工程师 硬件工程师学习 电路图 电路分析 仪器仪表 Python 视频爬取教程 Python 视频爬取 Python 视频教程 rsync openEuler 云计算面试题 监控 GPU状态 Java进程管理 DevOps自动化 脚本执行 跨平台开发 远程运维 Apache Exec JSch C 进程地址空间 进程 宠物 免费学习 宠物领养 宠物平台 小游戏 五子棋 yum GCC crosstool-ng chrome 浏览器下载 chrome 下载安装 谷歌浏览器下载 邮件APP 免费软件 USB转串口 嵌入式Linux IPC xshell termius iterm2 客户端 MySql Linux无人智慧超市 LInux多线程服务器 QT项目 LInux项目 单片机项目 开机黑屏 nohup后台启动 电脑桌面出现linux图标 电脑桌面linux图标删除不了 电脑桌面Liunx图标删不掉 linux图标删不掉 高德地图 鸿蒙接入高德地图 HarmonyOS5.0 chromium dpi ollama api ollama外网访问 termux 环境搭建 SecureCRT Bug解决 Qt platform OpenCV mac设置host 创业创新 PostgreSQL15数据库 国产操作系统 统信UOS jdk11安装 jdk安装 openjdk11 openjdk11安装 数据集 IMX317 MIPI H265 VCU 影刀 #影刀RPA# 热榜 rpc 实时音视频 实时互动 人工智能生成内容 多进程 seleium camera Arduino 电子信息 flash-attention 报错 make命令 makefile文件 dash 正则表达式 k8s部署 MySQL8.0 高可用集群(1主2从) ci/cd C语言 软考设计师 中级设计师 SQL 软件设计师 小智 可用性测试 python高级编程 Ansible elk stack SRS 流媒体 直播 MCP server agent C/S spark HistoryServer Spark YARN jobhistory 硬件 设备 PCI-Express RustDesk自建服务器 rustdesk服务器 docker rustdesk mount挂载磁盘 wrong fs type LVM挂载磁盘 Centos7.9 微信小程序域名配置 微信小程序服务器域名 微信小程序合法域名 小程序配置业务域名 微信小程序需要域名吗 微信小程序添加域名 .net core Hosting Bundle .NET Framework vs2022 AutoDL rtsp rtp VM搭建win2012 win2012应急响应靶机搭建 攻击者获取服务器权限 上传wakaung病毒 应急响应并溯源 挖矿病毒处置 应急响应综合性靶场 IMM 反向代理 我的世界 我的世界联机 数码 大语言模型 LLMs rust腐蚀 file server http server web server EtherNet/IP串口网关 EIP转RS485 EIP转Modbus EtherNet/IP网关协议 EIP转RS485网关 EIP串口服务器 直播推流 银河麒麟操作系统 opensearch helm 游戏程序 项目部署到linux服务器 项目部署过程 langchain 弹性计算 云服务器 裸金属服务器 弹性裸金属服务器 状态管理的 UDP 服务器 Arduino RTOS .net Windsurf Pyppeteer 信号处理 c/s 哈希算法 element-ui 上传视频并预览视频 vue上传本地视频及进度条功能 vue2选择视频上传到服务器 upload上传视频组件插件 批量上传视频 限制单个上传视频 #STC8 #STM32 ecmascript nvidia 进程控制 ios 冯诺依曼体系 GPU训练 快捷键 旋转屏幕 自动操作 Ubuntu 22.04 算家云 算力租赁 安装教程 node 虚拟现实 向量数据库 milvus安装 裸机装机 linux磁盘分区 裸机安装linux 裸机安装ubuntu 裸机安装kali 裸机 csrf OpenCore vm 切换root Kali Linux Claude 双系统 GRUB引导 Linux技巧 飞牛nas fnos yum换源 WebVM image 计算机 cudnn JDK Java LInux Linux Vim 安装MySQL 进程信号 磁盘挂载 新盘添加 partedUtil 单元测试 easyTier 内网穿透 组网 gru FTP 服务器 ftp vscode1.86 1.86版本 ssh远程连接 个人开发 大模型微调 阻塞队列 生产者消费者模型 服务器崩坏原因 HTML audio 控件组件 vue3 audio音乐播放器 Audio标签自定义样式默认 vue3播放音频文件音效音乐 自定义audio播放器样式 播放暂停调整声音大小下载文件 react next.js 部署next.js cpu 实时 使用 opcua opcda KEPServer安装 孤岛惊魂4 RAID RAID技术 磁盘 存储 web3.py open Euler dde deepin kamailio sip VoIP WebRTC express 三级等保 服务器审计日志备份 NFS redhat 创意 社区 midjourney AI写作 rtsp服务器 rtsp server android rtsp服务 安卓rtsp服务器 移动端rtsp服务 大牛直播SDK asm C# MQTTS 双向认证 emqx 像素流送api 像素流送UE4 像素流送卡顿 像素流送并发支持 outlook 错误代码2603 无网络连接 2603 asp.net大文件上传 asp.net大文件上传下载 asp.net大文件上传源码 ASP.NET断点续传 树莓派 Navidrome finebi web开发 pyscenic 生信教程 OpenGL 图形渲染 RAGFLOW 检索增强生成 文档解析 大模型垂直应用 cocoapods 版本 安装 Xinference MacOS 向日葵 EVE-NG Obsidian Dataview 代码 对比 meld Beyond Compare DiffMerge RockyLinux nano 鸿蒙面试 面试题 蓝耘科技 元生代平台工作流 ComfyUI Docker Desktop 产测工具框架 IMX6ULL 管理框架 elk Logstash 日志采集 拓扑图 rnn 虚拟局域网 AI Agent 字节智能运维 目标跟踪 OpenVINO 推理应用 ip命令 新增网卡 新增IP 启动网卡 设置代理 实用教程 指令 centos 7 dify 本地化部署 scapy tar docker compose RDP post.io 企业邮箱 搭建邮箱 rtc 隐藏目录 文件系统 管理器 通配符 xml linux子系统 忘记密码 deepseek-v3 ktransformers AI提示词优化 NVIDIA 工作流自动化工具 bushujiaocheng 部署教程 AI算力 租算力 到算家云 mcp-proxy mcp-inspector fastapi-mcp sse 传统数据库升级 银行 Kylin-Server 服务器安装 zotero WebDAV 同步失败 代理模式 pillow ping++ 做raid 装系统 ssrf 失效的访问控制 frp 内网服务器 内网代理 内网通信 PVE string模拟实现 深拷贝 浅拷贝 经典的string类问题 三个swap 黑客 渗透测试 信息收集 api VPS 外网访问 nuxt3 网络编程 聊天服务器 套接字 TCP Socket 大文件秒传跨域报错cors 显示管理器 lightdm gdm DOIT 四博智联 zookeeper 服务器繁忙 备选 网站 调用 示例 大数据平台 grub 版本升级 扩容 llama.cpp 视频平台 录像 视频转发 视频流 机柜 1U 2U hive gunicorn 锁屏不生效 行情服务器 股票交易 速度慢 切换 股票量化接口 股票API接口 .netcore socket 电子信息工程 HTTP状态码 客户端错误 服务器端错误 API设计 mongodb 私有化 换源 Debian 微信分享 Image wxopensdk bcompare Linux24.04 GaN HEMT 氮化镓 单粒子烧毁 辐射损伤 辐照效应 HarmonyOS Next DevEco Studio cmos PX4 rclone AList webdav fnOS Qwen2.5-coder 离线部署 protobuf 序列化和反序列化 软件卸载 系统清理 并查集 leetcode 沙盒 英语 本地环回 bind jellyfin nas lvm GPU环境配置 Ubuntu22 CUDA PyTorch Anaconda安装 iNode Macos UOS 开机自启动 桌面快捷方式 Echarts图表 折线图 柱状图 异步动态数据 鸿蒙开发 可视化效果 火绒安全 mybase 华为鸿蒙系统 ArkTS语言 Component 生命周期 条件渲染 Image图片组件 材料工程 stable diffusion 腾讯云大模型知识引擎 eNSP 企业网络规划 华为eNSP 网络规划 实习 Linux PID openwrt USB网络共享 运维监控 minicom 串口调试工具 glibc 王者荣耀 网络用户购物行为分析可视化平台 大数据毕业设计 软链接 硬链接 Docker Hub docker pull daemon.json 自动化任务管理 ros2 moveit 机器人运动 telnet 远程登录 ai小智 语音助手 ai小智配网 ai小智教程 智能硬件 esp32语音助手 diy语音助手 etcd RBAC springcloud 3d miniapp 真机调试 调试 debug 断点 网络API请求调试方法 性能调优 安全代理 读写锁 Typore Ubuntu22.04 开发人员主页 centos-root /dev/mapper yum clean all df -h / du -sh 大屏端 全文检索 图搜索算法 IPv4/IPv6双栈 双栈技术 网路规划设计 ensp综合实验 IPv4过渡IPv6 IPv4与IPv6 rust autoware 智能体 autogen openai coze MAVROS 四旋翼无人机 桥接模式 windows虚拟机 虚拟机联网 动态库 GCC编译器 -fPIC -shared 超级终端 多任务操作 提高工作效率 Apache OpenNLP 句子检测 分词 词性标注 核心指代解析 嵌入式实习 网卡的名称修改 eth0 ens33 EMQX 通信协议 华为机试 MS Materials Invalid Host allowedHosts Kylin OS 云服务 常用命令 文本命令 目录命令 NAT转发 NAT Server UDP EasyConnect LDAP springboot 单一职责原则 统信 虚拟机安装 echarts 信息可视化 网页设计 nextjs reactjs HCIE 数通 豆瓣 追剧助手 迅雷 Headless Linux 磁盘监控 服务器数据恢复 数据恢复 存储数据恢复 raid5数据恢复 磁盘阵列数据恢复 X11 Xming DigitalOcean GPU服务器购买 GPU服务器哪里有 GPU服务器 llama3 Chatglm 开源大模型 大大通 第三代半导体 碳化硅 高效日志打印 串口通信日志 服务器日志 系统状态监控日志 异常记录日志 雨云服务器 FunASR ASR asp.net上传文件夹 asp.net上传大文件 .net core断点续传 算力 ABAP aarch64 编译安装 HPC 毕昇JDK 浏览器自动化 硅基流动 ChatBox 笔灵AI AI工具 HP Anyware 智能电视 Netty 券商 股票交易接口api 类型 特点 mariadb 海康 samba 规格说明书 设计规范 RK3568 计算机系统 教育电商 SoC lua anonymous sse_starlette Starlette Server-Sent Eve 服务器推送事件 openssh 服务网格 istio 混合开发 环境安装 多层架构 解耦 灵办AI rdp 远程服务 Redis Desktop VMware安装mocOS macOS系统安装 软件工程 稳定性 看门狗 设计模式 匿名管道 ArkTs 通信工程 毕业 openvpn server openvpn配置教程 centos安装openvpn 开发环境 perf linux内核 华为证书 HarmonyOS认证 华为证书考试 matplotlib fonts-noto-cjk gpt-3 Xshell pthread 系统 brew photoshop firewall harmonyosnext SPI devmem nacos RTX5090 torch2.7.0 深度求索 私域 工作流 workflow 环境配置 ShenTong can 线程池 DocFlow Reactor k8s集群资源管理 云原生开发 KVM okhttp efficientVIT YOLOv8替换主干网络 TOLOv8 ue4 着色器 ue5 增强现实 沉浸式体验 技术实现 案例分析 AR searxng docker搭建pg docker搭建pgsql pg授权 postgresql使用 postgresql搭建 Portainer搭建 Portainer使用 Portainer使用详解 Portainer详解 Portainer portainer perl 监控k8s 监控kubernetes DBeaver dubbo database nftables 大模型技术 本地部署大模型 ROS2 ubuntu安装 linux入门小白 burp suite 抓包 compose 免密 登录 公钥 私钥 宝塔面板无法访问 trae 物理地址 页表 虚拟地址 源代码 hosts hosts文件管理工具 开源软件 MLLMs VLM gpt-4v Linux网络编程 stm32项目 SSH Xterminal AD域 VSCode odoo 服务器动作 Server action unity3d Hyper-V WinRM TrustedHosts 多个客户端访问 IO多路复用 TCP相关API 需求分析 vSphere vCenter 软件定义数据中心 sddc 黑客技术 移动云 AI agent dns是什么 如何设置电脑dns dns应该如何设置 ukui 麒麟kylinos openeuler 服务器部署ai模型 中间件 iis 即时通信 NIO Unity Dedicated Server Host Client 无头主机 文件分享 远程看看 远程协助 崖山数据库 YashanDB tcp IPMITOOL 硬件管理 uni-file-picker 拍摄从相册选择 uni.uploadFile H5上传图片 微信小程序上传图片 mybatis 温湿度数据上传到服务器 Arduino HTTP 网站搭建 serv00 博客 VMware创建虚拟机 .net mvc断点续传 田俊楠 阿里云ECS CPU 主板 电源 网卡 ECT转Modbus协议 EtherCAT转485协议 ECT转Modbus网关 gradle 互信 powerbi windows 服务器安装 Web应用服务器 服务器部署 本地拉取打包 弹性服务器 CNNs 图像分类 视频监控 内网渗透 靶机渗透 软件开发 华为昇腾910b3 vCenter服务器 ESXi主机 监控与管理 故障排除 日志记录 qwen2vl 百度云 矩池云 数据下载 数据传输 fpga ECS服务器 站群服务器 linux安装配置 捆绑 链接 谷歌浏览器 youtube google gmail MacOS录屏软件 ArcTS ArcUI GridItem regedit 开机启动 Ubuntu Server Ubuntu 22.04.5 EMUI 回退 降级 embedding epoll Hive环境搭建 hive3环境 Hive远程模式 Linux awk awk函数 awk结构 awk内置变量 awk参数 awk脚本 awk详解 Linux的基础指令 mm-wiki搭建 linux搭建mm-wiki mm-wiki搭建与使用 mm-wiki使用 mm-wiki详解 conda配置 conda镜像源 safari CentOS Stream CentOS 历史版本 下载 Ubuntu共享文件夹 共享目录 Linux共享文件夹 本地部署AI大模型 产品经理 minecraft 基础环境 高级IO curl wget 链表 cmake deep learning initramfs Linux内核 Grub 动静态库 sublime text3 macbook 一切皆文件 systemctl composer firewalld react native 管道 Github加速 Mac上Github加速 Chrome浏览器插件 图论 ranger MySQL8.0 Bandizip Mac解压 Mac压缩 压缩菜单 流程图 mermaid wifi驱动 ubantu rk3588 rknn-toolkit2 开发 AI代码编辑器 linux上传下载 可信计算技术 安全架构 SSH 密钥生成 SSH 公钥 私钥 生成 IPv4 子网掩码 公网IP 私有IP 怎么卸载MySQL MySQL怎么卸载干净 MySQL卸载重新安装教程 MySQL5.7卸载 Linux卸载MySQL8.0 如何卸载MySQL教程 MySQL卸载与安装 DenseNet 路径解析 uv anaconda docker搭建nacos详解 docker部署nacos docker安装nacos 腾讯云搭建nacos centos7搭建nacos Cookie log4j 嵌入式系统开发 DeepSeek r1 Open WebUI WLAN 文心一言 rancher c import save load 迁移镜像 K8S k8s管理系统 qt5 客户端开发 蓝牙 网易邮箱大师 健康医疗 Linux权限 权限命令 特殊权限 音乐服务器 音流 GRE 命令模式 Trae叒更新了? anythingllm open-webui docker国内镜像 ocr 文件共享 电子器件 二极管 三极管 lstm LSTM-SVM 时间序列预测 实验 物联网开发 webstorm 技术 autodl intellij idea 高效远程协作 TrustViewer体验 跨设备操作便利 智能远程控制 junit DeepSeek行业应用 Heroku 网站部署 僵尸世界大战 游戏服务器搭建 HAProxy 银河麒麟桌面操作系统 TrinityCore 魔兽世界 查询数据库服务IP地址 SQL Server 银河麒麟服务器操作系统 系统激活 Spring Security vscode 1.86 社交电子 ldap token sas sysctl.conf vm.nr_hugepages mock mock server 模拟服务器 mock服务器 Postman内置变量 Postman随机数据 MI300x 银河麒麟高级服务器 外接硬盘 Kylin 计算虚拟化 弹性裸金属 swoole hugo 致远OA OA服务器 服务器磁盘扩容 网络穿透 netty dns SWAT 配置文件 服务管理 网络共享 加解密 Yakit yaklang skynet 搭建个人相关服务器 服务器管理 配置教程 网站管理 AP配网 AK配网 小程序AP配网和AK配网教程 WIFI设备配网小程序UDP开 飞牛 Web服务器 多线程下载工具 PYTHON clickhouse 联机 僵尸毁灭工程 游戏联机 开服 服务器ssl异常解决 动态规划 AimRT pyside6 界面 支持向量机 Webserver 异步 shard 源代码管理 概率论 accept h.265 腾讯云服务器 轻量应用服务器 linux系统入门 linux命令 gateway 机器人仿真 模拟仿真 热键 slave HarmonyOS MateBook 深度优先 多端开发 智慧分发 应用生态 鸿蒙OS 医疗APP开发 app开发 neo4j 数据仓库 数据库开发 deekseek alias unalias 别名 黑苹果 命令行 基础入门 输入法 prometheus数据采集 prometheus数据模型 prometheus特点 fd 文件描述符 代理服务器 trea idea c/c++ 串口 系统开发 binder framework 源码环境 x64 SIGSEGV xmm0 iperf3 带宽测试 进程优先级 调度队列 进程切换 磁盘清理 Reactor反应堆 ubuntu 18.04 Mac软件 MVS 海康威视相机 终端 Tabs组件 TabContent TabBar TabsController 导航页签栏 滚动导航栏 用户管理 推荐算法 beautifulsoup 视觉检测 实时内核 Ardupilot 可执行程序 容器技术 互联网实用编程指南 IP地址 IPv6 计算机基础 ceph 离线部署dify ollama下载加速 跨域 VLAN 企业网络 k8s资源监控 annotations自动化 自动化监控 监控service 监控jvm kerberos HiCar CarLife+ CarPlay QT RK3588 序列化反序列化 PPI String Cytoscape CytoHubba 显卡驱动 虚幻引擎 vr Node-Red 编程工具 流编程 WebUI DeepSeek V3 聚类 mq selete JAVA 链路聚合 端口聚合 win11 windows11 思科 lb 协议 ebpf uprobe scikit-learn GameFramework HybridCLR Unity编辑器扩展 自动化工具 底层实现 进程程序替换 execl函数 execv函数 execvp函数 execvpe函数 putenv函数 ICMP 论文阅读 脚本 postgres Dify重启后重新初始化 轮播图 llamafactory 微调 Qwen isaacgym RAGflow nacos容器环境变量 docker启动nacos参数 nacos镜像下载 三维重建 多媒体 BitTorrent 搜索 pppoe radius 远程过程调用 Windows环境 SVN Server tortoise svn vasp安装 ecm bpm 压测 ECS 数学建模 hibernate 游戏机 Wi-Fi 统信操作系统 XFS xfs文件系统损坏 I_O error windows日志 ISO镜像作为本地源 MNN 直流充电桩 充电桩 内网环境 相差8小时 UTC 时间 Nuxt.js KingBase ux Dell R750XS java-rocketmq 联想开天P90Z装win10 备份SQL Server数据库 数据库备份 傲梅企业备份网络版 Java Applet URL操作 服务器建立 Socket编程 网络文件读取 AI作画 思科模拟器 Cisco 能力提升 面试宝典 IT信息化 磁盘镜像 服务器镜像 服务器实时复制 实时文件备份 执法记录仪 智能安全帽 smarteye 剧本 代码调试 ipdb sqlite3 半虚拟化 硬件虚拟化 Hypervisor 域名服务 DHCP 符号链接 配置 繁忙 解决办法 替代网站 汇总推荐 AI推理 小智AI服务端 xiaozhi TTS KylinV10 麒麟操作系统 Vmware 信创 信创终端 中科方德 迁移指南 TrueLicense Jellyfin UOS1070e 安防软件 dba banner React Next.js 开源框架 WebServer 话题通信 服务通信 visual studio 浪潮信息 AI服务器 授时服务 北斗授时 代码规范 zerotier 联网 easyconnect 代理 deepseak 豆包 KIMI 腾讯元宝 umeditor粘贴word ueditor粘贴word ueditor复制word ueditor上传word图片 ueditor导入word ueditor导入pdf ueditor导入ppt 日志分析 系统取证 MinIO Qt QModbus 机架式服务器 1U工控机 国产工控机 bigdata 环境 非root rtcp CPU架构 服务器cpu vue在线预览excel和编辑 vue2打开解析xls电子表格 浏览器新开页签或弹框内加载预览 文件url地址或接口二进制文档 解决网页打不开白屏报错问题 issue 大厂程序员 硅基计算 碳基计算 认知计算 生物计算 AGI 系统架构设计 软件哲学 程序员实现财富自由 性能监控 webgl 僵尸进程 VMware安装Ubuntu Ubuntu安装k8s sequoiaDB 飞牛NAS 飞牛OS MacBook Pro OpenHarmony edge浏览器 分析解读 Attention NLP threejs 3D cd 目录切换 模拟实现 HarmonyOS NEXT 原生鸿蒙 强制清理 强制删除 mac废纸篓 su sudo 软件构建 CLion DIFY sublime text fork wait waitpid exit ELF加载 Linux的权限 retry 重试机制 大版本升 升级Ubuntu系统 Office 空间 查错 lio-sam SLAM Charles 线程同步 线程互斥 条件变量 接口返回 提示词 miniconda 顽固图标 启动台 GKI KMI 内核 影视app Bluetooth 配对 进程等待 内存泄漏 TRAE jina MDK 嵌入式开发工具 金仓数据库 2025 征文 数据库平替用金仓 ssh远程登录 xpath定位元素 浏览器开发 AI浏览器 linux 命令 sed 命令 springboot远程调试 java项目远程debug docker远程debug java项目远程调试 springboot远程 bat 流水线 脚本式流水线 软负载 实战案例 监控k8s集群 集群内prometheus proxy模式 easyui 交叉编译 问题解决 cfssl 自学笔记 小米 澎湃OS Android 解决方案 接口优化 k8s二次开发 Sealos virtualbox NLP模型 Helm k8s集群 Mermaid 可视化图表 Docker快速入门 GeneCards OMIM TTD WireGuard 异地组网 SystemV 计算机科学与技术 ajax 内存管理 考试 less kubeless UFW solr Crawlee finalsheel fabric BCLinux risc-v podman registries 无法解析服务器的名称或地址 kylin v10 麒麟 v10 Ubuntu 24.04.1 轻量级服务器 SSL证书 RTMP 应用层 流式接口 服务器时间 恒源云 bootstrap 并集查找 换根法 树上倍增 无桌面 SSL 域名 SEO iDRAC R720xd jetty undertow thingsboard cpp-httplib nfs Erlang OTP gen_server 热代码交换 事务语义 tailscale derp derper 中转 bonding 业界资讯 Clion Nova ResharperC++引擎 Centos7 远程开发 分布式训练 SysBench 基准测试 W5500 OLED u8g2 技术共享 LORA VNC 矩阵 工业4.0 欧标 OCPP 状态模式 西门子PLC 通讯 iBMC UltraISO 上传视频至服务器代码 vue3批量上传多个视频并预览 如何实现将本地视频上传到网页 element plu视频上传 ant design vue vue3本地上传视频及预览移除 win服务器架设 windows server 超融合 Qwen2.5-VL MQTT协议 消息服务器 云桌面 微软 AD域控 证书服务器 代码托管服务 client close 高效I/O VPN wireguard 充电桩平台 充电桩开源平台 网络原理 免费 显示器 laravel 金仓数据库概述 金仓数据库的产品优化提案 wordpress java-zookeeper logstash AWS pxe 信号 小艺 Pura X navicat 移动开发 元服务 应用上架 sonoma 自动更新 deepseek r1 玩机技巧 软件分享 软件图标 keepalived Linux环境 Ark-TS语言 支付 微信支付 开放平台 etl 查看显卡进程 fuser vpn IO模型 网络文件系统 多产物 跨平台 csrutil mac恢复模式进入方法 SIP 恢复模式 sudo原理 su切换 Maven archlinux kde plasma wpf pyicu 玩游戏 cpolar mvc java毕业设计 微信小程序医院预约挂号 医院预约 医院预约挂号 小程序挂号 swift 苹果电脑装windows系统 mac安装windows系统 mac装双系统 macbook安装win10双 mac安装win10双系统 苹果电脑上安装双系统 mac air安装win mac cocoapods macos cocoapods Linux指令 Mac部署 Ollama模型 Openwebui 配置教程 AI模型 容器清理 大文件清理 空间清理 ubuntu24.04.1 互联网医院 fast 多路转接 TCP协议 bot OpenSSH P2P HDLC 自动化编程 抗锯齿 烟花代码 烟花 元旦 dock 加速 网络建设与运维 网络搭建 神州数码 神州数码云平台 云平台 免费域名 域名解析 OpenManus 显示过滤器 Wireshark安装 钉钉 System V共享内存 进程通信 copilot Zoertier 内网组网 netlink libnl3 VGG网络 卷积层 池化层 粘包问题 ufw IPv6测试 IPv6测速 IPv6检测 IPv6查询 Alist mount 挂载 网盘 client-go Masshunter 质谱采集分析软件 使用教程 科研软件 VM虚拟机 d3d12 知行EDI 电子数据交换 知行之桥 EDI 小番茄C盘清理 便捷易用C盘清理工具 小番茄C盘清理的优势尽显何处? 教你深度体验小番茄C盘清理 C盘变红?!不知所措? C盘瘦身后电脑会发生什么变化? 红黑树封装map和set 医院门诊管理系统 4 - 分布式通信、分布式张量 代码复审 GPUGEEK 集成 通用环境搭建 MySQL openresty 搜狗输入法 中文输入法 HBase分布式集群 HBase环境搭建 HBase安装 HBase完全分布式环境 code-server CORS pyqt 飞书 国标28181 监控接入 语音广播 流程 SDP URL sqlite xss Unity插件 Anolis nginx安装 linux插件下载 sentinel 干货分享 黑客工具 密码爆破 chfs ubuntu 16.04 vue-i18n 国际化多语言 vue2中英文切换详细教程 如何动态加载i18n语言包 把语言json放到服务器调用 前端调用api获取语言配置文件 wsgiref Web 服务器网关接口 服务器主板 AI芯片 XCC Lenovo idm 北亚数据恢复 oracle数据恢复 OD机试真题 服务器能耗统计 智能音箱 智能家居 AD 域管理 音乐库 无法访问wordpess后台 打开网站页面错乱 linux宝塔面板 wordpress更换服务器 saltstack 服务器正确解析请求体 nosql 数字证书 签署证书 云耀服务器 Carla 配置原理 glm4 负载测试 yashandb solidworks安装 massa sui aptos sei Putty 花生壳 自定义登录信息展示 motd 美化登录 实时云渲染 云渲染 3D推流 能源 动态域名 linq 语法 av1 电视盒子 机顶盒ROM 魔百盒刷机 VR手套 数据手套 动捕手套 动捕数据手套 合成模型 扩散模型 图像生成 用户缓冲区 whistle xfce 子系统 NVM Node Yarn PM2 STL 欧拉系统 数据库管理 bert 导航栏 实时日志 logs 端口开放 青少年编程 系统内核 Linux版本 树莓派项目 function address 函数 地址 clipboard 剪贴板 剪贴板增强 uni-app x 开发工具 figma SSH 服务 SSH Server OpenSSH Server RoboVLM 通用机器人策略 VLA设计哲学 vlm fot robot 视觉语言动作模型 docker命令大全 openstack Xen seatunnel ubuntu24 vivado24 yum源切换 更换国内yum源 docker部署翻译组件 docker部署deepl docker搭建deepl java对接deepl 翻译组件使用 端口 查看 ss 项目部署 达梦 DM8 电视剧收视率分析与可视化平台 图片增强 增强数据 生活 Linux的基础开发工具 智能问答 Spring AI Milvus Multi-Agent 蜂窝网络 频率复用 射频单元 无线协议接口RAN 主同步信号PSS 烟雾检测 yolo检测 消防检测 broadcom LLaMA-Factory scrapy 5分钟快速学 docker入门 dockerfile 代理配置 企业级DevOps dify部署 Nginx报错413 Request Entity Too Large 的客户端请求体限制 Radius 根服务器 es h.264 线性代数 电商平台 佛山戴尔服务器维修 佛山三水服务器维修 聊天室 宕机切换 服务器宕机 游戏开发 流量运营 架构与原理 IDEA VS Code 端口测试 三次握手 火山引擎 cocos2d 3dcoat PTrade QMT 量化股票 OpenManage 工厂方法模式 vmware tools 制造 LVS 惠普服务器 惠普ML310e Gen8 惠普ML310e Gen8V2 janus 风扇散热策略 曙光 海光 宁畅 中科可控 静态NAT 光电器件 LED 客户端-服务器架构 点对点网络 服务协议 网络虚拟化 网络安全防御 Svelte 零日漏洞 CVE OpenAI 独立服务器 raid 视频服务器 移动魔百盒 风扇控制软件 ArtTS 星河版 win向maOS迁移数据 qtcreator NTP服务器 orbslam2 nginx默认共享目录 ANDROID_HOME zshrc AppLinking 应用间跳转 进程池实现 pipe函数 管道的大小 匿名管道的四种情况 direct12 charles mac安装软件 mac卸载软件 mac book 环境部署 linux常用命令 模块测试 NVIDIA显卡安装 Ubuntu开机黑屏 Makefile Make docker部署Python 李心怡 deployment daemonset statefulset cronjob 集群管理 输入系统 AzureDataStudio 机械臂 webview 静态IP docker search homeassistant OS 漏洞报告生成 mapreduce 定义 核心特点 优缺点 适用场景 web环境 Modbus TCP 学习路线 springboot容器部署 springboot容器化部署 微服务容器化负载均衡配置 微服务容器多节点部署 微服务多节点部署配置负载均衡 tar.gz tar.xz linux压缩 nmcli 网络配置 基本指令 模板 高可用 基础指令 libreoffice 转换 影刀证书 分享 rxjava Playwright MCP vb AISphereButler flink ardunio BLE hexo WINCC paddle lrzsz caddy 事件驱动 openvino access blocked 破解 站群 多IP 流量 rtmp 机架式 IDC AI导航站 macOS 极限编程 Metastore Catalog GRANT REVOKE mujoco 软件商店 livecd systemtools Ubuntu 24.04 搜狗输入法闪屏 Ubuntu中文输入法 能效分析 自定义shell当中管道的实现 匿名和命名管道 latex 红黑树 迁移 word转pdf C/C++ chrome历史版本下载 chrominum下载 时间轮 泰山派 根文件系统 编译 烧录 路径规划 文件清理 linux/cmake tftp 文档 elementui 若依框架 数据库数据恢复 云盘 安全组 zephyr 零售 手机 容器化 Serverless Python学习 Python编程 恒玄BES 共享 设置 Linux系统编程 STP 生成树协议 PVST RSTP MSTP 防环路 网络基础 根目录 Quixel Fab UE5 游戏商城 pnet 百度 pnetlab aac 泛型编程 证书 签名 MCP 服务器 JADX-AI 插件 RNG 状态 可复现性 随机数生成 jQuery 物理服务器 服务器租用 云服务器租用 物理机租用 5090 显卡 AI性能 A2A 科勘海洋 数据采集浮标 浮标数据采集模块 全栈 aiohttp asyncio 实时传输 Cache Aside Read/Write Write Behind eventfd 高性能 bug定位 缺陷管理 雾锁王国 本地不受DeepSeek 嵌入式实时数据库 FS bootfs rootfs linux目录 VUE Mysql 二级页表 gstreamer coffeescript 视频号 Autoware 辅助驾驶 lvgl8.3 lvgl9.2 lvgl lvgl安装 机器人操作系统 illustrator 进度条 CAD瓦片化 栅格瓦片 矢量瓦片 Web可视化 DWG解析 金字塔模型 watchtower 数字比特流 模拟信号 将二进制数据映射到模拟波形上 频谱资源 振幅频率相位 载波高频正弦波 仓库 服务注册与发现 分布式数据库 集中式数据库 业务需求 选型误 亲测 线程安全 写时拷贝 Linux的进程调度队列 活动队列 sql注入 生成对抗网络 MinerU proxy_pass 多系统 电子学会 仙盟大衍灵机 东方仙盟 仙盟创梦IDE CKA 开发效率 Windmill authorized_keys 密钥 SonarQube authing Async注解 gitlab服务器 事件分析 边缘服务器 利旧 AI识别 EF Core 客户端与服务器评估 查询优化 数据传输对象 查询对象模式 linux cpu负载异常 量子计算 分类 网络IO 队列 数据库占用空间 报警主机 豪恩 VISTA120 乐可利 霍尼韦尔 枫叶 时刻 矩阵乘法 3D深度学习 CSDN开发云 笔记本电脑 访问公司内网 DICOM ps命令 SFTP 手动分区 文件权限 Linux的进程概念 cuda驱动 dnf Navigation 路由跳转 鸿蒙官方推荐方式 鸿蒙原生开发 gerrit 系统完整性 越狱设备 Linux的进程控制 命令键 GenAI LLM 推理优化 LLM serving tvm安装 深度学习编译器 homebrew windows转mac ssh密匙 Mac配brew环境变量 冯诺依曼体系结构 Eigen 编译器 HarmonyOS 5开发环境 FreeLearning EulerOS 版本对应 Linux 发行版 企业级操作系统 RHEL 开源社区 Web3 Telegram MobileNetV3 软路由 电脑操作 CodeBuddy首席试玩官 安全性测试 微信自动化工具 微信消息定时发送 原子操作 AXI CAN 多总线 docker安装mysql win下载mysql镜像 mysql基本操作 docker登陆私仓 docker容器 deepseek与mysql 触觉传感器 GelSight GelSightMini GelSight触觉传感器 计算机八股 docker 失效 docker pull失效 docker search超时 UDS Bootloader 嵌入式软件 labview Spring Boot shell编程 排序算法 选择排序 网络接口 时间间隔 所有接口 多网口 低成本 服务器托管 云托管 数据中心 idc机房 去中心化 若依 内存不足 outofmemory Key exchange 主包过大 鼠标 teamspeak proto actor actor model Actor 模型 pikachu靶场 XSS漏洞 XSS DOM型XSS Modbustcp服务器 SFTP服务端 js逆向 Web测试 大模型应用开发 AI 应用商业化 参数服务器 分布式计算 数据并行 支付宝小程序 云开发 IT 护眼模式 重置密码 codereview code-review Windows应急响应 应急响应 webshell 网络攻击防御 网络攻击 激光雷达 镭眸 机床 仿真 课件 教学 课程 数码相机 全景相机 设备选择 实用技巧 数字空间 杂质 CKEditor5 webgis cesium HP打印机 #Linux #shell #脚本 路由器 智能手表 Pura80 WATCH 5 更新apt 安装hadoop前的准备工作 CMake 自动化编译工具 containerd 深度强化学习 深度Q网络 Q_Learning 经验回收 dsp开发 Agentic Web NLWeb 自然语言网络 微软build大会 muduo库 Typescript Unlocker electron ROS1/ROS2 Wayland 开启关闭防火墙 huggingface N8N BMS 储能 AI控制浏览器 Browser user 责任链模式 高考 省份 年份 分数线 数据 思科实验 高级网络互联 中文分词 改行学it libtorch 实时语音识别 流式语音识别 BiSheng 驱动器映射 批量映射 win32wnet模块 网络驱动器映射工具 mysql 8 mysql 8 忘记密码 pavucontrol 蓝牙耳机 扩展错误 http状态码 请求协议 DELL R730XD维修 全国服务器故障维修 网络带宽 问题排查 LangGraph 模型上下文协议 MultiServerMCPC load_mcp_tools load_mcp_prompt Windows 11 重装电脑系统 FreeRTOS 进程管理 麒麟OS MQTT Broker GMQT Lenovo System X GNOME Scoket messages dmesg udp回显服务器 算法协商 故障排查 flinkcdc Java 日志框架 Log4j2 Logback SLF4J 结构化日志 企业级应用 哥sika gemini gemini国内访问 gemini api gemini中转搭建 Cloudflare TCP回显服务器 mcp client mcp server mobaxterm 更换镜像源 PATH 命令行参数 main的三个参数 Windows Hello 摄像头 指纹 生物识别 vr看房 在线看房系统 房产营销 房产经济 三维空间 九天画芯 铁电液晶 显示技术 液晶产业 技术超越 桶装水小程序 在线下单送水小程序源码 桶装水送货上门小程序 送水小程序 订水线上商城 服务 鸿蒙项目 RHCE CTF 程序地址空间 arkts arkui 单用户模式 恢复 对话框showDialog showActionMenu 操作列表ActionSheet CustomDialog 文本滑动选择器弹窗 消息提示框 警告弹窗 nvcc A100 RTOS 空Ability示例项目 讲解 vmvare TiDB测试集群 南向开发 北向开发 体验鸿蒙电脑操作系统 Windows电脑能装鸿蒙吗 nvm安装 回归 pow 指数函数 优化 权限掩码 粘滞位 编程与数学 usb typec 自动化测试框架 VAD 视频异常检测 VAR 视频异常推理 推理数据集 强化微调 GRPO 简单工厂模式 集合 List pandas dataworks maxcompute 麒麟kos 网络检测 ping 局域网 openlayers bmap tile server 进程状态 PCB OSB Oracle中间件 SOA 相机标定 磁盘IO iostat Featurize Mobilenet 分割 CLI JavaScript langgraph.json 客户端/服务器架构 分布式应用 三层架构 Web应用 跨平台兼容性 blender three.js 数字孪生 漫展 zipkin cs144 funasr asr 语音转文字 gpu 材质 贴图 加密 BIO Java socket Java BIO Java NIO Java 网络编程 观察者模式 SQI iOS Trust Authentication Challenge ESP8266简单API服务器 Arduino JSON webserver jvm调优 LRU策略 内存增长 垃圾回收 CTE AGE C++11 lambda octomap_server bpf bpfjit pcap 汽车 软硬链接 文件 包装类 药品管理 HarmonyOS SDK Map Kit 地图 English 源码软件 实战项目 入门 精通 云解析 云CDN SLS日志服务 云监控 时序数据库 iotdb vsode dnn 美食 CUDA Toolkit 苹果 分布式锁 pytorch3d PDF 图片 表格 文档扫描 发票扫描 GDB调试 Ubuntu环境 四层二叉树 断点设置 infini-synapse Jenkins流水线 声明式流水线 Arduino下载开发板 esp32开发板 esp32-s3 AOD-PONO-Net 图像去雾技术 NAT 软件安装 记账软件 容器部署 ICMPv6 network NetworkManager unionFS OverlayFS OCI docker架构 写时复制 客户端和服务器端 FCN asp.net OpenTiny 几何绘图 三角函数 数字化转型 TraeAgent 调试方法 Valgrind 内存分析工具 弹性 dockercompose安装 compose.yml文件详解 dockercompose使用 time时间函数 c盘 mcp-server coze扣子 AI口播视频 飞影数字人 coze实战 概率与统计 随机化 位运算 几何计算 数论 pi0 lerobot aloha act 人工智能作画 敏捷开发 lsof requests python库 ipv6 光猫设置 路由器设置 myeclipse 系统架构设计师 WIFI7 无线射频 高通 射频校准 射频调试 射频匹配 地平线5 过期连接 服务发现 信创国产化 达梦数据库 决策树 大学大模型可视化教学 全球气象可视化 大学气象可视化 物理机 协作 快速入门 FS100P 华为OD机考 机考真题 需要广播的服务器数量 cordova 跨域开发 JavaWeb Echo 集群 uni-popup报错 连接服务器超时 点击屏幕重试 uniapp编译报错 uniapp vue3 imported module TypeError 科研绘图 生信服务器 泛微OA HarmonyOS5 软件高CPU占用 ProcessExplorer Process Hacker System Informer Windbg 线程的函数调用堆栈 debezium 数据变更 android-ndk 分布式总线 react Native 学习笔记 redisson 黑马 苍穹外卖 线程互斥与同步 iptables 系统升级 16.04 WinCC OT与IT SCADA 智能制造 MES 信奥 Cilium 最新微服务 SSM 项目实战 页面放行 物理层 重构 迭代器模式 guava 汇编 vue2 csapp 缓冲区 gin 开启黑屏 nvidia驱动 Tesla显卡 dfs 滑动验证码 反爬虫 英语六级 接口隔离原则 抽象工厂模式 scala cangjie struts 物联网嵌入式开发实训室 物联网实训室 嵌入式开发实训室 物联网应用技术专业实训室 alphafold3 医药 cn2 带宽 pve SpringBoot 前端项目部署 微前端 siteground siteground安装wp 一键安装wordpress 服务器安装wordpress 虚拟主机 物理机服务器 HTTP3 全双工通信 多路复用 实时数据传输 tengine web负载均衡 WAF 安全整改 ubuntu18.04 WebFuture 打包工具 数据链路层 路由配置 Jenkins 配置凭证 Searxng 视频会议 tty2 RustDesk 搭建服务器 AudioLM SPP 国产芯片 视频直播物理服务器租用 小亦平台 运维问题解决方法 gaussdb问题解决 java18 mysql8.4.5 黑屏 I/O 设备管理 进程创建 进程退出 效率 Termius Vultr 远程服务器 ohmyzsh PP-OCRv5 ubuntu20.04 OCR uboot 部署方案 机床主轴 热误差补偿 风电齿轮箱 故障诊断 物理-数据融合 预测性维护 NGINX POD 进程操作 理解进程 Win10修改MAC 原创作者 cp 进度显示 上架 mac完美终端 2025一带一路金砖国家 金砖国家技能大赛 技能发展与技术创新大赛 首届网络系统虚拟化管理与运维 比赛样题 统信uos paddlepaddle 转流 rtsp取流 rtmp推流 食用文档 开闭原则 proteus KingbaseES