From 44da907252ec5fe9ef5b8af3fb379c4fa1dacd9b Mon Sep 17 00:00:00 2001 From: kaitlincart <43049322+kaitlincart@users.noreply.github.com> Date: Fri, 30 Sep 2022 09:03:43 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Anthony --- website/content/docs/installation/index.mdx | 10 +++++----- website/content/docs/installation/upgrading.mdx | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/content/docs/installation/index.mdx b/website/content/docs/installation/index.mdx index d237c774c..f5babfec0 100644 --- a/website/content/docs/installation/index.mdx +++ b/website/content/docs/installation/index.mdx @@ -8,12 +8,12 @@ description: |- # Install Vagrant -To get started with Vagrant, you will need to download the appropriate installer or +To get started with Vagrant, download the appropriate installer or package for your platform from our [Vagrant downloads page](/downloads). Install the package with the standard procedures for your operating system. -The installer should automatically add `vagrant` to your system path +The installer automatically adds `vagrant` to your system path so that it is available in terminals. If it is not found, log out and back into your system; this is a common issue for Windows. @@ -30,7 +30,7 @@ a [box](https://developer.hashicorp.com/vagrant/tutorials/getting-started/gettin ## How to use multiple hypervisors -If you have more than one hypervisor is in use, hypervisors often do not allow you to bring up virtual machines. +Hypervisors often do not allow you to bring up virtual machines if you have more than one hypervisor in use. Below are a couple of examples to allow you to use Vagrant and VirtualBox if another hypervisor is present. @@ -50,7 +50,7 @@ VBoxManage: error: VirtualBox can't operate in VMX root mode. Please disable the VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole ``` -You must denylist the additional hypervisors in order for VirtualBox to run correctly. +You must add the additional hypervisors to the deny list in order for VirtualBox to run correctly. First, find out the name of the hypervisor. @@ -61,7 +61,7 @@ kvm 593920 1 kvm_intel irqbypass 16384 1 kvm ``` -Use the `blacklist` command to add the hypervisor to you denylist. +Use the `blacklist` command to add the hypervisor to your denylist. ```shell-session $ echo 'blacklist kvm-intel' >> /etc/modprobe.d/blacklist.conf diff --git a/website/content/docs/installation/upgrading.mdx b/website/content/docs/installation/upgrading.mdx index f35b1ebfd..af36da6e9 100644 --- a/website/content/docs/installation/upgrading.mdx +++ b/website/content/docs/installation/upgrading.mdx @@ -31,4 +31,4 @@ newer Vagrantfiles may have backwards incompatible changes until 3.0. ## Issue reports -If you encounter any problems at upgrade time, [report them issue in Github](https://github.com/hashicorp/vagrant/issues). Upgrades are meant to be a smooth process and we consider it a bug if it was not. +If you encounter any problems at upgrade time, [report them as an issue in Github](https://github.com/hashicorp/vagrant/issues). Upgrades are meant to be a smooth process and we consider it a bug if it was not.