coreygrunewald / vagrant-debian-wheezy-64

Automatic Debian 7 Vagrant base box building on OSX, Linux and Windows

Home Page:https://github.com/dotzero/vagrant-debian-wheezy-64

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

This script will:

  1. download the Debian 7.5 "Wheezy" server, 64bit iso
  2. ... do some magic to turn it into a vagrant box file
  3. output debian-wheezy-64.box

Requirements

  • Oracle VM VirtualBox
  • Vagrant
  • mkisofs
  • 7zip

Usage on OSX

./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-wheezy into vagrant:

vagrant box add "debian-wheezy" debian-wheezy-64.box

Usage on Linux

./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-wheezy into vagrant:

vagrant box add "debian-wheezy" debian-wheezy-64.box

Usage on Windows (under cygwin/git shell)

./build.sh

Tested under Windows 7 with this tools:

To add debian-wheezy-64.box with name debian-wheezy into vagrant:

vagrant box add "debian-wheezy" debian-wheezy-64.box

Environment variables

You can affect the default behaviour of the script using environment variables:

VAR=value ./build.sh

The following variables are supported:

  • PRESEED — path to custom preseed file. May be useful when if you need some customizations for your private base box (user name, passwords etc.);

  • LATE_CMD — path to custom late_command.sh. May be useful when if you need some customizations for your private base box (user name, passwords etc.);

  • VM_GUI — if set to yes or 1, disables headless mode for vm. May be useful for debugging installer;

Notes

This script basted on original Carl's repo and with some tweaks to be compatible Debian.

Bitdeli Badge

About

Automatic Debian 7 Vagrant base box building on OSX, Linux and Windows

https://github.com/dotzero/vagrant-debian-wheezy-64

License:MIT License


Languages

Language:Shell 100.0%