echo
echo

Reputation: 799

Get hardware info on Android?

In adb shell, do we have any command to get device info, like lspci?

Thank you!

Upvotes: 6

Views: 13608

Answers (3)

Chih-Hsuan Yen
Chih-Hsuan Yen

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

Ryan Conrad
Ryan Conrad

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

capitano666
capitano666

Reputation: 656

I'm afraid access to the linux layer is only possible by "rooting" the device

Upvotes: 1

Related Questions