Arch Linux 中的 Ftrace 前端是什么?
What is the Ftrace front-end in Arch Linux?
在Arch Linux
中,我想使用trace-cmd,Ftrace
的前端。但不幸的是,它不存在:
# pacman -S trace-cmd
error: target not found: trace-cmd
我尝试在Arch Linux package site中查找,仍然没有结果。那么Arch Linux
有开箱即用的前端吗?
经过搜索和实验,我发现有两种方法:
(1) 使用 trace-cmd
的 source code,然后克隆并制作:
$ git clone https://kernel.googlesource.com/pub/scm/linux/kernel/git/rostedt/trace-cmd/
$ cd trace-cmd
$ make
$ make install
(2) trace-cmd
在 user repository 中:
$ git clone https://aur.archlinux.org/trace-cmd.git
$ cd trace-cmd
$ makepkg -si
在Arch Linux
中,我想使用trace-cmd,Ftrace
的前端。但不幸的是,它不存在:
# pacman -S trace-cmd
error: target not found: trace-cmd
我尝试在Arch Linux package site中查找,仍然没有结果。那么Arch Linux
有开箱即用的前端吗?
经过搜索和实验,我发现有两种方法:
(1) 使用 trace-cmd
的 source code,然后克隆并制作:
$ git clone https://kernel.googlesource.com/pub/scm/linux/kernel/git/rostedt/trace-cmd/
$ cd trace-cmd
$ make
$ make install
(2) trace-cmd
在 user repository 中:
$ git clone https://aur.archlinux.org/trace-cmd.git
$ cd trace-cmd
$ makepkg -si