From e90eabd4543b3f0858e6cfffe2c716bcb00c339b Mon Sep 17 00:00:00 2001 From: Graham Whaley Date: Sat, 28 Jul 2018 10:20:13 +0100 Subject: [PATCH] Dev: console socket: Update the path to the socket The debug console socket path looks to have moved from the `sbs` dir to the `vm` dir. Update the docs to reflect this. Fixes: #202 Signed-off-by: Graham Whaley --- Developer-Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Developer-Guide.md b/Developer-Guide.md index 41e8a56973..6d596cb7d4 100644 --- a/Developer-Guide.md +++ b/Developer-Guide.md @@ -670,7 +670,7 @@ $ sudo docker run -ti busybox sh ``` $ id=$(sudo docker ps -q --no-trunc) -$ console="/var/run/vc/sbs/${id}/console.sock" +$ console="/var/run/vc/vm/${id}/console.sock" $ sudo socat "stdin,raw,echo=0,escape=0x11" "unix-connect:${console}" ```