Arch Linux 中的 Ftrace 前端是什么?

What is the Ftrace front-end in Arch Linux?

Arch Linux中,我想使用trace-cmdFtrace的前端。但不幸的是,它不存在:

# pacman -S trace-cmd
error: target not found: trace-cmd

我尝试在Arch Linux package site中查找,仍然没有结果。那么Arch Linux有开箱即用的前端吗?

经过搜索和实验,我发现有两种方法:
(1) 使用 trace-cmdsource code,然后克隆并制作:

$ git clone https://kernel.googlesource.com/pub/scm/linux/kernel/git/rostedt/trace-cmd/  
$ cd trace-cmd
$ make
$ make install

(2) trace-cmduser repository 中:

$ git clone https://aur.archlinux.org/trace-cmd.git
$ cd trace-cmd
$ makepkg -si