跳到主要内容

HDC 常用命令

下面将介绍 hdc 的常用命令。

进入命令行交互模式

$ hdc shell
# cat /etc/param/ohos.para
const.actionable_compatible_property.enabled=false
const.postinstall.fstab.prefix=/system
const.secure=1
security.perf_harden=1
const.allow.mock.location=0
const.debuggable=1
const.build.characteristics=default
const.product.model=ohos
const.product.name="OpenHarmony 3.2 Beta2"
persist.sys.usb.config=hdc
const.sandbox=enable
const.product.devicetype=default
const.software.model=default
const.product.manufacturer=default
const.product.brand=default
const.build.product=default
const.product.hardwareversion=default
const.product.bootloader.version=bootloader
const.product.cpu.abilist=default
const.product.software.version=OpenHarmony 3.2.5.5
const.product.incremental.version=default
const.product.firstapiversion=1
const.product.build.type=default
const.product.build.user=default
const.product.build.host=default
const.product.build.date=default
const.product.hardwareprofile=default
const.ohos.buildroothash=default

传输文件

往设备中推送文件

hdc file send <local file> /mnt
备注

如果遇到以下错误,需要将文件系统改为可读写。

$ hdc file send example /
[Fail]Error opening file: read-only file system, path://example
hdc shell mount -o rw,remount /

从设备中获取文件

hdc file recv <remote> <local>

安装新软件

hdc install -r <local package path>

查看日志

hdc hilog

重启设备

hdc target boot

更多选项

hdc --help