Last active
June 12, 2019 03:27
-
-
Save maxamillion/679e8950df0bd2cbf564ee9835b62d55 to your computer and use it in GitHub Desktop.
QRadar CE on CentOS 7.6+ Hacks and Workarounds (so far...)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hacks to work around the broken installer and incompatible bundled rpms | |
mkdir /media/cdrom | |
mount -o loop ~/QRadarCE7_3_1.GA.iso /media/cdrom | |
mkdir /tmp/qradar-7.6 | |
cp -R /media/cdrom/* /tmp/qradar-7.6 | |
sed -i 's/release 7.5/release 7.6/g' /tmp/qradar-7.6/inc/setup.funcs | |
cat >/etc/yum/pluginconf.d/priorities.conf <<EOF | |
[main] | |
enabled=1 | |
EOF | |
sed -i s/gpgcheck=0/gpgcheck=0\\npriority=1/ /tmp/qradar-7.6/post/setup_yum_repo.sh | |
#### ONCE YOU RUN THIS, THERE IS NO TURNING BACK. | |
#### IT WILL PUT CRAP ALL OVER THE SYSTEM AND THE OS INSTALL IS NOW TAINTED | |
########### NOTE: THIS STILL DOESN'T WORK BECAUSE OF A DRBD KERNEL MODULE DEP | |
/tmp/qradar-7.6/setup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment