Skip to content
Snippets Groups Projects
Verified Commit 59bff277 authored by Kyle Yan's avatar Kyle Yan :confused:
Browse files

update readme with more instructions

parent 4db286bd
No related branches found
No related tags found
No related merge requests found
......@@ -2,3 +2,26 @@
Install Vagrant, and run the VM with `vagrant up`!
## Usage
* Install Vagrant. If you are using Homebrew on macOS, just use `brew install vagrant`.
* Clone this repo and `cd` into the directory.
* Run `vagrant up`. This should set up your VM in a few minutes.
* Run `vagrant ssh` in the directory to SSH into the VM.
* If you need to copy files from/to the VM, you can use the vagrant-ssh plugin:
install with
vagrant plugin install vagrant-scp
and then you can copy files to the VM:
vagrant scp local/path/to/file :remote/path/to/file
or from the VM:
vagrant scp :remote/path/to/file local/path/to/file
* To use VSCode with the Vagrant VM, first run `vagrant ssh-config` in the
repo's directory, and then append the output to your `~/.ssh/config` file.
You can rename the host as you like (change the first line to `Host mininet`).
Then in VSCode you can connect to the `mininet` host.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment