error opening /sys/kernel/debug/tracing/options/print-tgid: Permission denied (13)


无法开始跟踪

尝试在我的Note 10.1 2014设备上运行systrace时出现上述错误。有任何想法吗?

我遵循了Google在这里概述的步骤:

python systrace.py --time=10 -o mynewtrace.html sched gfx view wm


http://developer.android.com/tools/help/systrace.html

最佳答案

您无权访问所选的某些类别。有些类别需要root权限。

使用以下命令检查当前设备可以支持的所有类别。

$python systrace.py -l

     gfx - Graphics
   input - Input
    view - View System
 webview - WebView
      wm - Window Manager
      am - Activity Manager
      sm - Sync Manager
   audio - Audio
   video - Video
  camera - Camera
     hal - Hardware Modules
     app - Application
     res - Resource Loading
  dalvik - Dalvik VM
      rs - RenderScript
  bionic - Bionic C Library
   power - Power Management


运行上述命令之前,先根并重新挂载设备。

adb root
adb remount

10-07 23:21