其他分享
首页 > 其他分享> > ADB 二

ADB 二

作者:互联网

获取系统版本

adb shell getprop ro.build.version.release

获取系统api版本

adb shell getprop ro.build.version.sdk

获取系统信息( CPU,厂商名称等)

adb shell   cat /system/build.prop | grep   product

获取设备型号

adb -d shell getprop ro.product.model

获取系统厂商名

adb -d shell getprop ro.product.brand

获取手机序列号

adb get-serialno
或者
adb shell getprop ro.serialno

获取手机mac地址

adb  shell  cat  /sys/class/net/wlan0/address

获取手机内存信息

adb shell cat /proc/meminfo

获取手机内部存储信息

df -h /data

获取sdcard存储信息:

df  -h /storage/sdcard

标签:getprop,product,shell,获取,adb,ADB,ro
来源: https://blog.csdn.net/weixin_41477306/article/details/99715091