安卓adb学习

电脑 adb 控制 安卓主机(10.9.20.25)

1、adb connect 10.9.20.25连接设备

2、adb devices查询设备

3、如果有设备,adb shell ifconfig查看网卡

## Switch to writable mode
adb root
adb disable-verity
adb reboot

## Install APKs
adb root
adb remount
adb push FuFot.apk /system/app/FuFot/FuFot.apk
adb push FuSettings.apk /system/app/FuSettings/FuSettings.apk
adb reboot

## Log
adb logcat > fota.log

## STOP

adb kill-server

## START

adb start-server

adb install -r CommonServices.apk

操作跟文件系统/

df

ubi0:rootfs              61812     53108      8704  86% /

操作
mount -o remount,rw /

~ # mount
rootfs on / type rootfs (rw)

原创文章 96 获赞 48 访问量 6万+

猜你喜欢

转载自blog.csdn.net/wteruiycbqqvwt/article/details/103523132