Skip to content

Instantly share code, notes, and snippets.

@gmacaire
Created July 2, 2012 08:44
Show Gist options
  • Save gmacaire/3032033 to your computer and use it in GitHub Desktop.
Save gmacaire/3032033 to your computer and use it in GitHub Desktop.
cd /opt/
sudo -s
# téléchargement de Vagrant
wget http://files.vagrantup.com/packages/41445466ee4d376601fd8d0c6a5e3af61d32f131/vagrant_1.0.2_x86_64.deb
# Installation de Vagrant
dpkg -i vagrant_1.0.2_x86_64.deb
./vagrant/bin/vagrant -v
ln -s /opt/vagrant/bin/vagrant /usr/bin/vagrant
# Téléchargement de VirtualBox
wget http://download.virtualbox.org/virtualbox/4.1.12/virtualbox-4.1_4.1.12-77245~Debian~squeeze_amd64.deb
# Installation de VirtualBox
dpkg -i virtualbox-4.1_4.1.12-77245~Debian~squeeze_amd64.deb
exit; cd
vagrant box add base http://files.vagrantup.com/lucid32.box
mkdir elasticsearch; cd elasticsearch; vagrant init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment