Reputation: 799
In adb shell, do we have any command to get device info, like lspci?
Thank you!
Upvotes: 6
Views: 13608
Reputation: 844
You can get some (messy) messages from dmesg:
$ adb shell dmesg
Note that the kernel ring buffer is limited. The first few lines may be dropped as time goes by.
dmesg requires root, too.
Upvotes: 0
Reputation: 6900
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.
Upvotes: 2
Reputation: 656
I'm afraid access to the linux layer is only possible by "rooting" the device
Upvotes: 1