Skip to content

Instantly share code, notes, and snippets.

View cyberycon's full-sized avatar

Paul Kelly cyberycon

View GitHub Profile
@cyberycon
cyberycon / install-vc-prereqs.sh
Last active May 9, 2020 22:37
Enable installation of VBox additions on RHEL 8
#!/bin/bash
yum -y install glibc.x86_64
yum -y install libgcc.i686
yum -y install libstdc++.i686
yum -y install glibc-devel.i686
yum -y install xterm.x86_64
yum -y install pax
@cyberycon
cyberycon / install-jdk.sh
Created May 3, 2020 01:51
Install JDK on Red Hat 8
#!/bin/bash
yum update
yum install java-1.8.0-openjdk-devel
java -version