This app has been tested on CentOS 7 minimal install.
- https://www.virtualbox.org/wiki/Downloads
- http://isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1511.iso
- Open VirtualBox
- New
- Give it a name
- Type: Linux
- Version: Other Linux (64-bit)
- Continue
- Give it at least a couple GB of RAM
- VDI (VirtualBox Disk Image)
- Dynamically allocated
- At least several GB of hard-drive space
- Right-click the new VM > select Settings OR Click the orange settings gear
- Click System (optional increase cores)
- Click Processor > increase the available cores
- Click Storage [IMPORTANT]
- Click Empty in the Storage Tree
- Now, over on the right-hand side of the window across from Optical Drive, click the DVD icon.
- Choose Virtual Optical Disk File...
- Set up NICs (I give it 2, one bridged for internet, one host-only for "airplane mode" NOTE: Host-only adapter requires host-only network setup.)
- I'm tired of explaining try this.
- Boot up VM
- Go through centos install process. Create an administrator user to ssh in as.
First, ssh into your fresh, minimal CentOS 7 install and verify that you have internet access.
ping google.comIf not, check your interfaces, and bring them online until you are able to ping some external server.
To find your interface names use:
ip aThen bring your bridged interface online:
sudo ifup <interface_name>
sudo ifup em1
sudo ifup enp0s3In your workspace directory, as an administrator run the following command:
sudo yum install -y wget && wget https://raw.githubusercontent.com/Schatzman/webgame/master/scripts/setup && sudo chmod +x setup && sudo ./setupNOTE: You may need to edit the epel-release version in setup if 7-8 is no longer available.