From f04e99ca2d09b2449f2ae529ce055bc66a0373a1 Mon Sep 17 00:00:00 2001 From: Stuart Howlette Date: Thu, 19 Mar 2020 12:49:54 +0000 Subject: [PATCH] Fixed typos in README, and made the language a little clear for enabling an SSH server --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 783cceb..f77c27c 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,9 @@ You can also pass optional parameters ### SSH Access -SSH access to the QEMU virtual machine can be enabled by using the `--ssh` flag. This will portforward `TCP2222` on the host machine to `TCP22` on the QEMU guest machine. This does not install or start an SSH server within the guest itself, so you will stil need to enable this on a per-guest basis. For Ubuntu guests, you can enable this by installing `openssh-server`. +SSH access to the QEMU virtual machine can be enabled by using the `--ssh` flag. This will portforward `TCP2222` on the host machine to `TCP22` on the QEMU guest machine. + +This does not install or start an SSH server within the guest itself, so you may need to enable this on a per-guest basis. For Ubuntu guests, you can enable this by installing `openssh-server`. If the default port overlaps with another service on your host, you can override this with `--ssh-port $PORT`. This will still forward to port `TCP22` on the guest machine.