获取 Android 上的硬件信息?
在 adb shell 中,我们是否有任何命令来获取设备信息,例如 lspci?
谢谢你!
In adb shell, do we have any command to get device info, like lspci?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能应该在 android.stackexchange.com 上,但无论如何。即使您没有 root,您也可以使用
getprop
进行访问,它将返回有关设备的信息。This should probably be on android.stackexchange.com, but anyhow. even if you are not rooted, you can access use
getprop
and it will return information about the device.恐怕只有通过“root”设备才能访问linux层
I'm afraid access to the linux layer is only possible by "rooting" the device
您可以从 dmesg 获得一些(混乱的)消息:
请注意,内核环形缓冲区是有限的。随着时间的推移,前几行可能会被删除。
dmesg 也需要 root。
You can get some (messy) messages from dmesg:
Note that the kernel ring buffer is limited. The first few lines may be dropped as time goes by.
dmesg requires root, too.