This script will:
- download the
Debian 7.2 "Wheezy"
server, 64bit iso - ... do some magic to turn it into a vagrant box file
- output
debian-wheezy-64.box
- Oracle VM VirtualBox
- Vagrant
- mkisofs
- 7zip
./build.sh
This should do everything you need. If you don't have mkisofs
or p7zip
, install homebrew, then:
brew install cdrtools
brew install p7zip
To add debian-wheezy-64.box
with name debian-72
into vagrant:
vagrant box add "debian-72" debian-wheezy-64.box
./build.sh
This should do everything you need. If you don't have mkisofs
or p7zip
:
sudo apt-get install genisoimage
sudo apt-get install p7zip-full
To add debian-wheezy-64.box
with name debian-72
into vagrant:
vagrant box add "debian-72" debian-wheezy-64.box
This script basted on original Carl's repo and with some tweaks to be compatible Debian 7.2.