Skip to content

Instantly share code, notes, and snippets.

@cyberycon
Last active May 9, 2020 22:37
Show Gist options
  • Save cyberycon/ae69d012830e581e3f424f369d225da6 to your computer and use it in GitHub Desktop.
Save cyberycon/ae69d012830e581e3f424f369d225da6 to your computer and use it in GitHub Desktop.
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
#!/bin/bash
# RUN AS SUDO
yum update
yum groupinstall "Development Tools"
yum install kernel-devel elfutils-libelf-devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment