zoukankan      html  css  js  c++  java
  • adb命令(二)

    1、获取手机型号指令

      adb shell cat /system/build.prop | findstr "ro.product.model"

      

    2、获取手机处理器信息

      adb shell cat /proc/cpuinfo | findstr "Processor"

    3、获取手机内存信息

      adb shell cat /proc/meminfo | findstr "MemTotal"

      

      看到的是988792,988792/1024=965.6M

    4、获取手机屏幕分辨率信息

      adb shell dumpsys window | findstr "Display"

      

      5、获取手机系统版本信息

        adb shell getprop ro.build.version.release

        

      6、获取手机内核版本信息

        adb shell cat /proc/version

        

      7、获取手机运营商信息

      adb shell getprop gsm.operator.alpha

      8、获取手机网络类型信息

      adb shell getprop gsm.network.type

      

      9、获取手机串号信息

      adb shell dumpsys iphonesubinfo | findstr "Device ID"

      

      10、获取手机android系统各个分区的相关信息

      adb shell df

      

      

  • 相关阅读:
    Python
    Python
    Python
    Django REST framework
    Django REST framework
    Django REST framework
    Django REST framework
    jquery.unobtrusive-ajax.js的扩展,做到片段式加载
    jquery.unobtrusive-ajax.js单独的用法
    不复杂的Autofac注入
  • 原文地址:https://www.cnblogs.com/R-bear/p/7594712.html
Copyright © 2011-2022 走看看