2018-07-02 bootchart

From https://source.android.com/devices/tech/perf/boot-times#bootchart

adb shell 'touch /data/bootchart/enabled'
adb reboot
sudo apt install pybootchartgui
sudo apt install libgnome2-bin
./system/core/init/grab-bootchart.sh


【转】Bootchart工具在Android手机上的使用方法和心得
查看Bootchart执行测量是否成功:

重启手机,在ubuntu上使用adb链接手机,进入手机查看/data/bootchart目录中查看是否生成了需要的文件:

# ls -l  
-rw-rw-rw- root     root          452 2010-01-01 00:00 header  
-rw-r--r-- root     root            0 2010-01-01 00:00 kernel_pacct  
-rwxr-xr-x root     root      1020195 2010-01-01 00:02 proc_diskstats.log  
-rwxr-xr-x root     root      4252966 2010-01-01 00:02 proc_ps.log  
-rwxr-xr-x root     root       138215 2010-01-01 00:02 proc_stat.log 

bootchart

搜索 bootchart_init

【转】Android7.0 bootchart工具使用说明


From https://blog.csdn.net/andyhuabing/article/details/23669007

6.在电脑上安装bootchart工具

使用sudo apt-get install bootchart 命令安装, 如果出现 bootchart无法正常解析android中生成的bootchart.tgz文件。
需要使用老版本的安装包bootchart_0.9-0ubuntu6_all.deb,可以在此下载http://download.csdn.net/detail/sckgenius/7166477。
先sudo apt-get install librsvg2-bin,然后sudo dpkg -i bootchart_0.9-0ubuntu6_all.deb 。


你可能感兴趣的:(2018-07-02 bootchart)