Run prettier on all *.md files

```
prettier '{app,source}/**/**.md' --write
```
This commit is contained in:
Oliver Davies 2020-03-08 17:52:59 +00:00
parent a3ceeaf0f3
commit 85a10c545b
170 changed files with 5127 additions and 2282 deletions

View file

@ -1,16 +1,28 @@
---
title: How to fix Vagrant Loading the Wrong Virtual Machine
date: 2014-10-06
excerpt: Here are the steps that I took to fix Vagrant and point it back at the correct VM.
excerpt:
Here are the steps that I took to fix Vagrant and point it back at the correct
VM.
tags:
- vagrant
- virtualbox
---
A few times recently, I've had instances where [Vagrant](https://www.vagrantup.com) seems to have forgotten which virtual machine it's supposed to load, probably due to renaming a project directory or the .vagrant directory being moved accidentally.
Here are the steps that I took to fix this and point Vagrant back at the correct VM.
A few times recently, I've had instances where
[Vagrant](https://www.vagrantup.com) seems to have forgotten which virtual
machine it's supposed to load, probably due to renaming a project directory or
the .vagrant directory being moved accidentally.
Here are the steps that I took to fix this and point Vagrant back at the correct
VM.
1. Stop the machine from running using the `$ vagrant halt` command.
1. Use the `$ VBoxManage list vms` command to view a list of the virtual machines on your system. Note the ID of the correct VM that should be loading. For example, `"foo_default_1405481857614_74478" {e492bfc3-cac2-4cde-a396-e81e37e421e2}`. The number within the curly brackets is the ID of the virtual machine.
1. Within the .vagrant directory in your project (it is hidden by default), update the ID within the machines/default/virtualbox/id file.
1. Use the `$ VBoxManage list vms` command to view a list of the virtual
machines on your system. Note the ID of the correct VM that should be
loading. For example,
`"foo_default_1405481857614_74478" {e492bfc3-cac2-4cde-a396-e81e37e421e2}`.
The number within the curly brackets is the ID of the virtual machine.
1. Within the .vagrant directory in your project (it is hidden by default),
update the ID within the machines/default/virtualbox/id file.
1. Start the new VM with `$ vagrant up`.