Sysdig custom fixlet

Hi All
I would like to install Sysdig version 0.27 on a RHEL 9 server. Can anyone provide a custom fixlet or task for this installation?

Regards
AK

Is there a manual method for installing the necessary tool? If so, please share so that someone might possibly decode it into a BigFix action script.

Or you can simply use BigFix’s native shell script support to test it.

image

Hi Vijay

We manually installed some servers using rpm " rpm -ivh sysdig-0.34.1-x86_64.rpm" command once we uploaded the sysdig file in RHEL9.

Regards
AK

  • Use the BigFix Software Distribution Wizard to upload the RPM file and generate prefetch values. Replace prefetch in the script with the generated values.
  • Deploy the task to a test RHEL 9 system.

// Step 1: Download the Sysdig RPM file
prefetch 50ceef4c3bdb4d7508ff27187261fe513cb071c2 sha1:50ceef4c3bdb4d7508ff27187261fe513cb071c2 size:26949352 http://ABC.com:52311/Uploads/50ceef4c3bdb4d7508ff27187261fe513cb071c2/sysdig-0.34.1-x86_64.rpm.tmp sha256:69990d9055697370de63ec09d0c420ccb53b991bb9d72b5542dd08d3d899b011

// Step 2: Move the RPM file to a temporary directory
delete /tmp/sysdig-0.34.1-x86_64.rpm
extract 50ceef4c3bdb4d7508ff27187261fe513cb071c2 /tmp/sysdig-0.34.1-x86_64.rpm

// Step 3: Install Sysdig using rpm
wait rpm -ivh /tmp/sysdig-0.34.1-x86_64.rpm

1 Like