Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplified User Installation via Vagrant #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,6 @@ VirtualBox Installation:
* https://www.virtualbox.org/wiki/Downloads
* https://www.virtualbox.org/wiki/End-user_documentation

Installing the Virtual Machine Image: Vagrant
=============================================

Once you've installed Vagrant and VirtualBox, you'll need to get an
operating system image, or "box". Please download one of the following
large files:

If you have a 64-bit laptop: http://files.vagrantup.com/precise64.box

If you have a 32-bit laptop: http://files.vagrantup.com/precise32.box

Then run the following command from the folder where you downloaded it:

* 64-bit: vagrant box add precise precise64.box
* 32-bit: vagrant box add precise precise32.box

Installing Tutorial Exercises: Vagrant
======================================

Expand Down
12 changes: 10 additions & 2 deletions vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ Vagrant.configure("2") do |config|
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.

# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise"
# Setup a 64 bit host by default
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"

# If host is 32-bit use a 32-bit guest
if ENV["PROCESSOR_ARCHITECTURE"] == "x86"
puts "falling back to 32-bit guest architecture"
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
end

# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
Expand Down