From 6b15b73b390885457b3d6b8da126a9117aa901d8 Mon Sep 17 00:00:00 2001 From: Alexis Gavoty Date: Wed, 2 Jul 2014 09:50:41 +0200 Subject: [PATCH] Update vagrant.md --- vagrant.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vagrant.md b/vagrant.md index ffed73cb..6c610565 100644 --- a/vagrant.md +++ b/vagrant.md @@ -6,11 +6,11 @@ -**Prérequis** : An x86 computer with VirtualBox installed and enough RAM capacity to be able to run a small virtual machine. +**Prerequisite** : An x86 computer with VirtualBox installed and enough RAM capacity to be able to run a small virtual machine. --- -## Initialisation +## Initialization Create a project folder ```bash @@ -24,7 +24,7 @@ vagrant init chef/debian-7.4 ``` Uncomment (remove the leading #) the following line in the newly created Vagrantfile to get access from the host system -``` +```bash config.vm.network "private_network", ip: "192.168.33.10" ``` @@ -42,7 +42,7 @@ Start the virtual machine vagrant up ``` -Connecter to the started virtual machine +Connect to the started virtual machine ```bash vagrant ssh ```