Android adb 命令获取设备中的设备驱动程序?
在 Android 设备中,我正在搜索命令或方法来检查当前设备中的所有内核模块/驱动程序。 那么,我们可以从命令行获取所有内核模块列表吗?
用于列出静态+运行时模块的所有内核模块/驱动程序的命令。 像lsmod一样
In android device, I am searching command or way to check all kernel modules/drivers in current device.
so, can we get all kernel module list from command line ?
Command to list all kernel module/driver for static + run time modules.
like lsmod
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们可以通过“adb shell ls sys/module/”来查看。
它将列出设备中静态和动态的几乎每个模块。
We can check it through "adb shell ls sys/module/".
it will list almost every module inside device static and dynamic.