我正在尝试在虚拟 Linux 上工作/设置用于分析操作系统进程的 Systemtap 工具。我正在使用 VirtualBox 来运行图像。通过
rpm -q kernel
和
cat /proc/version
得到的版本是:
Linux version 2.6.32-5-686 (Debian 2.6.32-48squeeze4)
我已经正确下载并安装了该工具并编写了一个简单的程序(.stp)。但是我一直收到同样的错误,我在很多地方搜索了信息但没有成功:
执行后:
sudo stap my_profiler.stp
我得到:
semantic error: libdwfl failure (all kernel modules found): no error
Pass 3: translation failed. Try again with another '--vp 001' option.
根据https://sourceware.org/systemtap/SystemTap_Beginners_Guide/errors.html
语义错误:libdwfl failure 处理调试信息时出现问题。在大多数情况下,此错误是由于安装了内核调试信息包,其版本与所探测的内核不完全匹配。安装的 kernel-debuginfo 包本身可能存在一些一致性或正确性问题。
我没有找到关于“kernel-debuginfo”包的相关信息。我也尝试过没有好处的详细选项。我什至尝试使用 VM 的旧快照。有任何想法吗?
我运行的 .stp 程序的代码:
probe timer.profile{
printf("Process: %s\n", execname())
printf("Process ID: %d\n", pid())
}