Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
Add LICENSE and update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
wunki committed Oct 25, 2013
1 parent 2fa936e commit 237d9ff
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 2 deletions.
27 changes: 27 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright (c) Petar Radosevic and individual contributors.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

3. Neither the name of Django nor the names of its contributors may be used
to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 changes: 47 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,41 @@

# Freebsd on Vagrant

# Setup
TODO: Introduction

**Table of Contents**

- [Freebsd on Vagrant](#freebsd-on-vagrant)
- [Quickstart](#quickstart)
- [Virtualbox settings](#virtualbox-settings)
- [Build a Custom box](#build-a-custom-box)
- [TODO's](#todo's)
- [License](#license)

## Quickstart

Simply copy the Vargantfile from this repository to the project you want to
run the VM from and you are done. The box will be downloaded if it's not
avnailable for you.

## Virtualbox settings

Your virtualbox works best with the following settings:

- System -> Motherboard -> **Hardware clock in UTC time**
- System -> Acceleration -> **VT/x/AMD-V**
- System -> Acceleration -> **Enable Nested Paging**
- Storage -> Attach a **.vdi** disk (this one we can minimize later)
- Audio -> Disable
- Network -> Adapter 1 -> Advanced -> Adapter Type -> **Paravirtualized Network (virtio-net)**
- Network -> Adapter 2 -> Advanced -> Attached to -> **Host-Only Adapter**
- Network -> Adapter 2 -> Advanced -> Adapter Type -> **Paravirtualized Network (virtio-net)**
- USB -> Disable

## Build a Custom box

This FreeBSD is build from the excellent [mfsBSD] ISO's. Installation is done
by booting the ISO and running the following:
by booting the [9.2-RELEASE-amd64 special edition] and running the following:

mount_cd9660 /dev/cd0 /cdrom
zfsinstall -d /dev/ada0 -u /cdrom/9.2-RELEAE-amd64 -s 1G
Expand Down Expand Up @@ -39,4 +71,17 @@ the following on your local machine:

vagrant package --base <your-virtualbox> --output freebsd-92-amd64-wunki


## TODO's

You can find the TODO's in the [TODO.org] at the root of this repository.

## License

The above is released under the BSD license, who would have thought! Meaning,
do whatever you want, but I would sure appreciate if you contribute any
improvements back to this repository.

[mfsBSD]: http://mfsbsd.vx.sk/
[]9.2-RELEASE-amd64 special edition]: http://mfsbsd.vx.sk/files/iso/9/amd64/mfsbsd-se-9.2-RELEASE-amd64.iso
[TODO.org]: https://github.com/wunki/vagrant-freebsd/blob/master/TODO.org

0 comments on commit 237d9ff

Please sign in to comment.