我已经安装了以下软件包:
linux-tools-common
,linux-tools-generic
和linux-cloud-tools-generic
我现在有了,perf
但是它有点坏了。
1 -
sudo perf report --gtk
GTK browser requested but could not find libperf-gtk.so
我已针对缺少的库打开了一个错误:https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1843114
2 -sudo perf report
在 TUI 中运行并打开某个功能时,我可以选择注释 [函数名称]但 GUI 返回一个错误并说
Cannot load tips.txt file, please install perf!
这看起来很像 Fedora 的问题:https://bugzilla.redhat.com/show_bug.cgi?id=1448402
我想要一个可以完全正常工作的perf
。获得它的最简单方法是什么?是否有我应该查看的 PPA?或者从源代码构建/安装?
答案1
关于:
Cannot load tips.txt file, please install perf!
我在 Ubuntu 18.04 上遇到了同样的问题。TL;DR 错误消息是良性的。
tips.txt文件来自:https://github.com/torvalds/linux/commits/master/tools/perf/Documentation/tips.txt
正如原始提交中所述,该文件的目的是在帮助行上显示随机使用提示。
因此,如果您想删除该消息,请将相应内容复制
tips.txt
到/usr/share/doc/perf-tip/tips.txt
。