Changes between Initial Version and Version 1 of linux/analyze


Ignore:
Timestamp:
2016/01/22 11:00:14 (8 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/analyze

    v1 v1  
     1= sar 
     2 
     3{{{ 
     4$ sar -u ALL -P ALL -f foo.sar 
     5}}} 
     6 
     7= perf 
     8 
     95秒間プロファイルを取得 
     10 
     11{{{ 
     12# perf record -a -- sleep 5 
     13}}} 
     14 
     15{{{ 
     16# perf report 
     17}}} 
     18 
     19で表示。特定のCPUを指定するには、-Cを使う。 
     20 
     21{{{ 
     22# perf report -C 22 
     23}}}