Vagrant-ubuntu-install: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 8: | Zeile 8: | ||
*cd vagrant_project | *cd vagrant_project | ||
*vagrant init | *vagrant init | ||
| + | =edit the Vagrantfile in this directory and replace= | ||
| + | config.vm.box = "precise32" | ||
| + | =up= | ||
| + | *vagrant up | ||
| + | =ssh= | ||
| + | *vagrant ssh | ||
=install the newest version= | =install the newest version= | ||
Version vom 21. April 2015, 09:58 Uhr
install
- apt-get install virtualbox virtualbox-dkms
- apt-get install vagrant
add new box
- vagrant box add precise64 http://files.vagrantup.com/precise64.box
new projekt
- mkdir vagrant_project
- cd vagrant_project
- vagrant init
edit the Vagrantfile in this directory and replace
config.vm.box = "precise32"
up
- vagrant up
ssh
- vagrant ssh
install the newest version
- wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.5_x86_64.deb -O vagrant.deb
- sudo dpkg -i vagrant.deb