0


Windows11 WSL2 Ubuntu编译安装perf工具

文章目录

简介

本文介绍如何在Windows11 WSL2中安装

perf

工具。这要求编译安装相应的内核代码.

操作环境

  • Windows11
  • WSL2
  • Ubuntu 22.04

问题来源

在WSL2中安装

perf

时,需要如下命令:

sudoaptinstall linux-tools-common linux-tools-generic linux-tools-$(uname-r)

此时会遇到如下错误:

E: Unable to locate package linux-tools-5.15.146.1-microsoft-standard-WSL2
E: Couldn't find any package by glob 'linux-tools-5.15.146.1-microsoft-standard-WSL2'

这是因为WSL2使用的Linux内核是定制化的, 并非

Ubuntu

母公司

Canonical

发布的标准内核.
这个时候需要我们手动编译安装内核代码.

准备阶段

1. 更新WSL2

打开Windows PowerShell, 更新WSL2:

PS C:\Users\xuron> wsl --update
正在检查更新。
已安装最新版本的适用于 Linux 的 Windows 子系统。

2.

Ubuntu 22.04

中安装编译工具

从开始菜单搜索并打开

Ubuntu

, 也可以在Windows Terminal中选择

Ubuntu 22.04

.

打开命令行界面后, 输入下面命令安装编译工具以及依赖库:

sudoapt update &&\sudoaptinstall-ybc build-essential flex bison dwarves libssl-dev libelf-dev

编译内核代码

这部分步骤需要小心操作, 毕竟是内核代码.

需要注意的是, 编译内核代码的时候不要使用root权限. 只需要在安装

perf

的时候使用

root

权限.

1. 检查内核版本

首先我们需要查看当前

Ubuntu

的内核版本:

aronic@arong:~$ uname-r5.15.146.1-microsoft-standard-WSL2

这个版本号将决定我们下载的内核代码版本, 即

5.15.146.1

版本.
请注意这个版本号可能会有变化, 你的实际操作结果跟这里的版本号可能会有所不同.

设置一个环境变量

KERNEL_VERSION

, 方便后续引用:

aronic@arong:~$ exportKERNEL_VERSION=$(uname-r|cut -d'-'-f1)

2. 下载内核代码

这里提供两种可选方式:

  1. 从Github Release下载, 找到对应版本的内核代码.
  2. 从Github上clone代码:
aronic@arong:~$ git clone \--depth1\
--single-branch --branch=linux-msft-wsl-${KERNEL_VERSION}\
https://github.com/microsoft/WSL2-Linux-Kernel.git

3. 编译并安装

使用

make

命令编译内核代码:

aronic@arong:~$ cd WSL2-Linux-Kernel
aronic@arong:~/WSL2-Linux-Kernel$ makeKCONFIG_CONFIG=Microsoft/config-wsl

为了加快编译速度, 可以使用

-j

参数:

aronic@arong:~/WSL2-Linux-Kernel$ make-j$(nproc)KCONFIG_CONFIG=Microsoft/config-wsl

编译

perf

工具:

aronic@arong:~/WSL2-Linux-Kernel$ cd tools/perf
aronic@arong:~/WSL2-Linux-Kernel/tools/perf$ make

编译完成后安装到系统目录:

aronic@arong:~/WSL2-Linux-Kernel/tools/perf$ sudocp perf /usr/bin/

全功能的

perf
perf

编译的时候会根据你本地安装的库的版本来决定是否支持某些功能. 如果你需要全功能的

perf

则需要进一步安装依赖库.

1. 安装依赖库

aronic@arong:~/WSL2-Linux-Kernel/tools/perf$ sudoaptinstall binutils-dev debuginfod default-jdk default-jre libaio-dev libbabeltrace-dev libcap-dev libdw-dev libdwarf-dev libelf-dev libiberty-dev liblzma-dev libnuma-dev libperl-dev libpfm4-dev libslang2-dev libssl-dev libtraceevent-dev libunwind-dev libzstd-dev libzstd1 python-setuptools python3 python3-dev systemtap-sdt-dev zlib1g-dev

2. 重新编译

perf
aronic@arong:~/WSL2-Linux-Kernel/tools/perf$ make clean &&make

编译过程中会显示哪些功能被支持.

...
Auto-detecting system features:
...                         dwarf: [ on  ]
...            dwarf_getlocations: [ on  ]
...                         glibc: [ on  ]
...                        libbfd: [ on  ]
...                libbfd-buildid: [ on  ]
...                        libcap: [ on  ]
...                        libelf: [ on  ]
...                       libnuma: [ on  ]
...        numa_num_possible_cpus: [ on  ]
...                       libperl: [ on  ]
...                     libpython: [ on  ]
...                     libcrypto: [ on  ]
...                     libunwind: [ on  ]
...            libdw-dwarf-unwind: [ on  ]
...                          zlib: [ on  ]
...                          lzma: [ on  ]
...                     get_cpuid: [ on  ]
...                           bpf: [ on  ]
...                        libaio: [ on  ]
...                       libzstd: [ on  ]
...        disassembler-four-args: [ on  ]

...

3. 安装

perf
aronic@arong:~/WSL2-Linux-Kernel/tools/perf$ sudocp perf /usr/bin/

测试

perf
aronic@arong:~$ perf --version
perf version 5.15.146.1.gee5b8e3dcbc6

perf ready

参考

  1. Microsoft/WSL2-Linux-Kernel, Github
  2. abel0b/install-linux-perf-on-wsl2.sh, Github
  3. Building Linux Perf tool, Medium

本文转载自: https://blog.csdn.net/arong_xu/article/details/136965827
版权归原作者 arong_xu 所有, 如有侵权,请联系我们删除。

“Windows11 WSL2 Ubuntu编译安装perf工具”的评论:

还没有评论