Skip to content

Instantly share code, notes, and snippets.

Mounting VirtualBox shared folders on an Ubuntu guest

This guide will walk you through the steps on how to setup a VirtualBox shared folder inside an Ubuntu VM that has been exported from an AWS EC2 instance.

Prerequisites

This guide assumes that you are using the following setup:

Initial Steps

@rkaiser0324
rkaiser0324 / CVE-2016-2107_Centos_7_fix.sh
Last active December 20, 2017 00:22 — forked from cuibonobo/CVE-2016-2107_Centos_7_fix.sh
How to fix CVE-2016-2107 on an Nginx server in Centos 7
#!/bin/bash
# You need this for your OpenSSL tests to pass later
yum install perl-core
# These must be run as a non-root user, or else one of the tests will fail
# Grab the source for OpenSSL 1.1, which has the patch for CVE-2016-2107
cd /tmp
wget https://www.openssl.org/source/openssl-1.1.0b.tar.gz && tar -zxf openssl-1.1.0b.tar.gz && cd openssl-1.1.0b