From 5ef84641a680af1aba68a3376d413a6f0f7240c3 Mon Sep 17 00:00:00 2001 From: JLKwong Date: Tue, 2 Feb 2021 20:12:10 -0800 Subject: [PATCH 1/2] Revise Vagrant tutorial (fixes #802) --- pages/vi/vagranttutorial.md | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/pages/vi/vagranttutorial.md b/pages/vi/vagranttutorial.md index 77f7a6535..962ad7786 100644 --- a/pages/vi/vagranttutorial.md +++ b/pages/vi/vagranttutorial.md @@ -7,22 +7,22 @@ ## Introduction -**[Vagrant](https://www.vagrantup.com/) is an open-source software product for building and maintaining portable virtual software development environments.** Below, you will find some basic instructions on interacting with Vagrant through the command-line interface (CLI). You should be familiar with this since you will need to use it to control virtual machines during your internship. +**First, we will set up our PC for virtualization. Virtualization is when your PC uses some of its hardware as if it is running another system (e.g. running Linux on a Windows PC, or vice versa). Then, we will install Vagrant. Vagrant is an open-source software product for building and maintaining portable virtual software development environments, which requires our PC to be able to virtualize.** Below, you will find some basic instructions on setting up your PC to interact with Vagrant through the command-line interface (CLI). You should be familiar with this since you will need to use it to control virtual machines during your internship. ## Preparation -Before installing Vagrant we must setup the cli repository, enable virtualization on our computer, and install VirtualBox. +Before installing Vagrant, we must set up the cli repository, enable virtualization on our computer, and install VirtualBox. -`NOTE: You should have at least 7 GB of free storage space this step.` +`NOTE: You should have at least 7 GB of free storage space for this step.` #### Windows – Pick your command-line program -There are three command-line programs you could use to interact with Vagrant CLI: +There are three command-line programs you could use for the rest of this tutorial: 1. **Git Bash**: This is our recommended command line program. **Git Bash** is already installed along with planet installation script. After you open **Git Bash**, you will find its default directory at `C:\Users\YOUR_USERNAME`. -2. **Command Prompt**: There are two Command Prompt options on Windows: **Command Prompt** and **Command Prompt(Admin)**. You could use either of them to access directories and interact with Vagrant CLI. The only difference is their default directory: **Command Prompt(Admin)** has `C:\Windows\system32` as default directory and **Command Prompt** has `C:\Users\YOUR_USERNAME` as the default directory. +2. **Command Prompt**: There are two Command Prompt options on Windows: **Command Prompt** and **Command Prompt(Admin)**. You could use either of them to access directories. The only difference is their default directory: **Command Prompt(Admin)** has `C:\Windows\system32` as default directory and **Command Prompt** has `C:\Users\YOUR_USERNAME` as the default directory. 3. **Windows PowerShell**: Windows PowerShell is a default shell interface installed on your machine, its default directory is `C:\Users\YOUR_USERNAME`. @@ -31,11 +31,11 @@ Example: If you see an instruction saying `cd desktop/treehouses/cli` instead us #### macOS or GNU\Linux - Terminal -Normally we use a terminal emulator to interact with Vagrant CLI +Normally we use a terminal emulator. -## Stay in the Right Directory +## Clone (Copy) the Treehouses Repository Files to Your PC -A lot of Vagrant commands require us to specify a target machine. We can also run those commands from a directory with the target machine’s Vagrant File. Otherwise, you may encounter an error like "A Vagrant environment or target machine is required." Please go to the directory that contains our Vagrant file: +`git clone` is a command to download a git project from an online repository (collection of files) to your computer. You will need a local copy of these files throughout your internship. Windows users should do the following: - Go into git bash and clone using `git clone https://github.com/treehouses/cli` @@ -60,7 +60,7 @@ Windows users should do the following: macOS or Linux users should do the following: - In your command line interface type the following: `brew cask install virtualbox` or `sudo apt-get install virtualbox` -Last, we must install Vagrant so we can move onto the next steps +Last, we must install [Vagrant](https://www.vagrantup.com/) so we can move onto the next steps Windows users should do the following: - Go to https://www.vagrantup.com/downloads.html and select windows hosts to install Vagrant @@ -70,6 +70,12 @@ macOS or Linux users should do the following: - In your command line interface type the following: `brew cask install vagrant` or `sudo apt-get install vagrant` +## Go to Vagrant's Directory + +A lot of Vagrant commands require us to specify a target machine. We can also run those commands from a directory with the target machine’s Vagrant File. Otherwise, you may encounter an error like "A Vagrant environment or target machine is required." Please go to the directory that contains our Vagrant file: +Windows users should do the following: `cd C:\Users\%USERNAME%\cli` +macOS or Linux users should do the following: `cd Desktop` + ## Global Status [`vagrant global-status`](https://www.vagrantup.com/docs/cli/global-status.html) will tell us the state of all active Vagrant environments on the system for the currently logged in user. You will see something similar to this: From 934a0a96e69be77c8bc2aa368a125523390f367c Mon Sep 17 00:00:00 2001 From: JLKwong Date: Tue, 2 Feb 2021 20:58:34 -0800 Subject: [PATCH 2/2] Revise Vagrant tutorial (fixes #802) --- pages/vi/vagranttutorial.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pages/vi/vagranttutorial.md b/pages/vi/vagranttutorial.md index 962ad7786..34e686f11 100644 --- a/pages/vi/vagranttutorial.md +++ b/pages/vi/vagranttutorial.md @@ -7,7 +7,7 @@ ## Introduction -**First, we will set up our PC for virtualization. Virtualization is when your PC uses some of its hardware as if it is running another system (e.g. running Linux on a Windows PC, or vice versa). Then, we will install Vagrant. Vagrant is an open-source software product for building and maintaining portable virtual software development environments, which requires our PC to be able to virtualize.** Below, you will find some basic instructions on setting up your PC to interact with Vagrant through the command-line interface (CLI). You should be familiar with this since you will need to use it to control virtual machines during your internship. +First, we will set up our PC for **virtualization**, which is when your PC uses some of its hardware as if it is running another system (e.g. running Linux on a Windows PC, or vice versa). Then, we will install **Vagrant**, which is an open-source software product for building and maintaining portable virtual software development environments (this requires our PC to be able to virtualize). Below, you will find some basic instructions on setting up your PC to interact with Vagrant through the command-line interface (CLI). You should be familiar with this since you will need to use it to control virtual machines during your internship. ## Preparation @@ -73,7 +73,9 @@ macOS or Linux users should do the following: ## Go to Vagrant's Directory A lot of Vagrant commands require us to specify a target machine. We can also run those commands from a directory with the target machine’s Vagrant File. Otherwise, you may encounter an error like "A Vagrant environment or target machine is required." Please go to the directory that contains our Vagrant file: + Windows users should do the following: `cd C:\Users\%USERNAME%\cli` + macOS or Linux users should do the following: `cd Desktop` ## Global Status