注意:BPF依賴高版本的linux內核。linux
建議OS內核版本>=4.1 (建議使用4.9或者更高版本的內核)
git
還須要啓用某些內核配置選項。如今,在許多發行版中默認啓用了這些選項,所以您一般不須要更改它們。它們是:
github
CONFIG_BPF=y, CONFIG_BPF_SYSCALL=y, CONFIG_BPF_JIT=y, CONFIG_HAVE_EBPF_JIT=y, CONFIG_BPF_EVENTS=y.ubuntu
下面以CentOS7.6爲例,演示下可執行文件的安裝步驟(ubuntu的安裝方式能夠參考下面的url,大致上步驟是同樣的)
bash
bcccurl
github地址: https://github.com/iovisor/bcc yum install bcc-tools 安裝後,二進制文件在 /usr/share/bcc/tools/ 相關文檔在/usr/share/bcc/tools/doc/ 注意, 須要在/etc/profile 裏面導入下路徑,否則默認找不到bcc-tools的系列工具
bpftraceide
github地址: https://github.com/iovisor/bpftrace 安裝方法 curl https://repos.baslab.org/bpftools.repo --output /etc/yum.repos.d/bpftools.repo yum install bpftrace bpftrace-tools .bt文件路徑:/usr/share/bpftrace/tools 文檔路徑在:/usr/share/bpftrace/tools/doc
bptool工具
安裝方法 yum install bpftool
上面3步後,咱們就能夠開始bpf調試之旅了。url