Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ctrl-c did not always terminate the vagrant running process #532 #607

Merged
merged 1 commit into from
Jul 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 13 additions & 3 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@ Follow step by step instructions below:
file with the new name *cygwinsetup.exe* into the *cygwin* folder (Details at
https://github.com/chocolatey/chocolatey-coreteampackages/issues/176#issuecomment-212939458.)

- Install ``git``:
- Install ``git``, ``curl``, ``tar`` and ``wget``:

.. code-block:: bash

$ cyg-get.bat git
$ cyg-get.bat git curl wget tar

- Install ``virtualbox`` (>= v5.2.22):

Expand All @@ -289,7 +289,17 @@ Follow step by step instructions below:

$ choco install vagrant --version 2.2.3 -y

After finishing the ``vagrant`` installation, restart the machine.
- Install Winpty for cygwin:

.. code-block:: bash
$ curl -L https://github.com/rprichard/winpty/releases/download/0.4.3/winpty-0.4.3-cygwin-2.8.0-x64.tar.gz | tar xzv --strip-components= -C /;
$ echo "alias vagrant=\"winpty vagrant\"" >> ~/.bashrc;

- Also please make sure ``echo $VAGRANT_PREFER_SYSTEM_BIN`` returns ``true``, if not then add it by ``echo "export VAGRANT_PREFER_SYSTEM_BIN=true" >> ~/.bashrc"``

- Restart the machine after the installation is finished.



Please check out the instruction video below for more details:

Expand Down