Skip to content

Instantly share code, notes, and snippets.

@ktraff
Last active July 13, 2016 04:34
Show Gist options
  • Save ktraff/6e3a25a0eed34943edeb to your computer and use it in GitHub Desktop.
Save ktraff/6e3a25a0eed34943edeb to your computer and use it in GitHub Desktop.

VM Setup

Installed SSH for remote access.

sudo apt-get install openssh-server

Set networking as Bridged Adapter. In VirtualBox, Machine > Settings > Network > Attached To = "Bridged Adapter".

sudo reboot

Make sure the VirtualBox Network Adapter is enabled. From Windows host, go to Start > "Network Connections" and ensure the adapter is enabled.

Installation

Dependencies

sudo apt-get install build-essential checkinstall
sudo apt-get install openssl  # required by euca-get-password

Install Python dependencies

sudo apt-get install python-dev libxml2-dev libxslt-dev

Python lxml module required 32-bit zlib library

sudo apt-get install lib32z1-dev

Python Dependencies

Installing pip
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
sudo python get-pip.py
Others
sudo pip install lxml
sudo pip install requestbuilder

Installation

wget http://downloads.eucalyptus.com/software/euca2ools/3.0/source/euca2ools-3.0.2.tar.gz
tar zxvf euca2ools-3.0.2.tar.gz
cd euca2ools-3.0.2
sudo python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment