From d920d3c97626a140f49509d6492dd841e10d159c Mon Sep 17 00:00:00 2001 From: musamaanjum Date: Thu, 18 Mar 2021 23:55:14 +0500 Subject: docs: fix scp command in instructions 'scp' command needs 10022 port number specified to establish connection over which vm is listening. If it isn't specified, scp tries to connect over port 22 and connection fails. The other docs write machine as 'root@localhost'. Replace it here to avoid confusion. Collon is necessary at the end for the command to work. --- docs/executing_syzkaller_programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/executing_syzkaller_programs.md') diff --git a/docs/executing_syzkaller_programs.md b/docs/executing_syzkaller_programs.md index 22763d8ce..747509f85 100644 --- a/docs/executing_syzkaller_programs.md +++ b/docs/executing_syzkaller_programs.md @@ -25,7 +25,7 @@ $ make 4. Copy binaries and the program to test machine (substitue target `linux_amd64` as necessary): ``` bash -$ scp bin/linux_amd64/syz-execprog bin/linux_amd64/syz-executor program test@machine +$ scp -P 10022 -i stretch.img.key bin/linux_amd64/syz-execprog bin/linux_amd64/syz-executor program root@localhost: ``` 5. Run the program on the test machine: -- cgit mrf-deployment