Vagrant: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Created page with ""Vagrant" is a system for managing virtual machines You set up a config file that sets up the vm, including installing packages and configuration settings."
 
Brian Wilson (talk | contribs)
mNo edit summary
Line 1: Line 1:
"Vagrant" is a system for managing virtual machines
"Vagrant" is a system for managing virtual machines
http://vagrantup.com/


You set up a config file that sets up the vm, including installing packages and configuration settings.
You set up a config file that sets up the vm, including installing packages and configuration settings.
As an example I am setting up a virtual machine to run Xastir under Parallels on my Mac.
cd Projects
mkdir xastir
vagrant init parallels/ubuntu-12.04
vagrant up --provider=parallels
''Downloading the Ubuntu ISO image takes 15 minutes on a reasonably fast connection''
When it's done you can connect with
vagrant ssh

Revision as of 21:15, 26 April 2015

"Vagrant" is a system for managing virtual machines

http://vagrantup.com/

You set up a config file that sets up the vm, including installing packages and configuration settings.

As an example I am setting up a virtual machine to run Xastir under Parallels on my Mac.

cd Projects
mkdir xastir
vagrant init parallels/ubuntu-12.04
vagrant up --provider=parallels 

Downloading the Ubuntu ISO image takes 15 minutes on a reasonably fast connection When it's done you can connect with

vagrant ssh