Network Monitor is failing to start with error failure in main.cpp
Release : 15.x/16.x
Component : redhat 7/8/9
missing dependencies is causing networkmonitor to not load correctly.
The following script will check for each dependency in the list below.
#!/bin/bash
for i in compat-openldap compat-db libpng compat-libtiff3 gtk+-devel gtk2-devel gstreamer libstdc++.so.5 libX11 libXext libXi libXrender libXtst wget unzip apr apr-util expat libicu
do
if rpm -q $i > /dev/null; then
echo "$i present"
else echo "$i missing"
fi
done
~