0

I am trying to use systemtap hooks on polkit functions, but I get an error that I need to install debuginfo. I can't find debuginfo for polkit package - polkit-0.115-11.el8.x86_64. Does anyone know where can I find it? Thnaks.

enter image description here

gal
  • 1
  • 2
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Sep 18 '21 at 17:42

1 Answers1

0

Try

export DEBUGINFOD_URLS=https://debuginfod.elfutils.org/
stap [...]

The polkit debuginfo rpm you're looking for is available in the public UBI8 repo, and mirrored at the above debuginfod server. See also: https://sourceware.org/elfutils/Debuginfod.html .

fche
  • 2,641
  • 20
  • 28