通过adb shell查看Android设备的硬件信息

你可以使用以下命令通过adb shell查看Android设备的硬件信息:

查看硬件信息:

 

adb shell cat /proc/cpuinfo      # 查看CPU信息

adb shell cat /proc/meminfo      # 查看内存信息

adb shell cat /proc/mounts       # 查看挂载信息

adb shell cat /proc/partitions   # 查看分区信息

adb shell cat /proc/version      # 查看内核版本信息

adb shell cat /proc/cmdline      # 查看内核启动参数

adb shell cat /proc/devices      # 查看设备信息

adb shell cat /proc/filesystems  # 查看支持的文件系统

adb shell cat /proc/interrupts   # 查看中断信息

adb shell cat /proc/ioports      # 查看I/O端口信息

adb shell cat /proc/diskstats    # 查看磁盘统计信息

adb shell cat /proc/bus/usb/devices  # 查看USB设备信息


2 使用getprop查看设备属性:


adb shell getprop               # 查看所有设备属性

adb shell getprop ro.product.model  # 查看设备型号

adb shell getprop ro.product.brand  # 查看设备品牌

adb shell getprop ro.product.manufacturer  # 查看设备制造商