Skip to content

Instantly share code, notes, and snippets.

@yapale
Last active August 29, 2015 14:07
Show Gist options
  • Save yapale/ec1b202048972f9d2fd0 to your computer and use it in GitHub Desktop.
Save yapale/ec1b202048972f9d2fd0 to your computer and use it in GitHub Desktop.
installing openstack@Ubuntu
#images are here :
#http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box
#git clone VagrantFile
# get localrc and thats all !
vagrant up
#https://github.com/edx/configuration/blob/master/vagrant/release/devstack/Vagrantfile
#hardware pre requists
#port forwarding
ports:
SSH 2222 22
WEB 8080 80
VNC 6080 6080
#Per http://askubuntu.com/questions/22743/how-do-i-install-guest-additions-in-a-virtualbox-vm
#sudo apt-get install virtualbox-guest-dkms
# Per http://www.htpcbeginner.com/install-gui-on-ubuntu-server-14-04-gnome/
#sudo apt-get install --no-install-recommends ubuntu-desktop
https://github.com/miguelgrinberg/vagrant-devstack/blob/master/Vagrantfile
https://github.com/lorin/devstack-vm
#after installation
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment