From 5c6bf6c55f03f8b5555d5b8d0ccc4cbb18073ce9 Mon Sep 17 00:00:00 2001 From: Dongliang Mu Date: Wed, 5 Sep 2018 01:22:00 -0400 Subject: Modify name of private key file as id_rsa does not exist in the context --- docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md index f19872383..d837e9c15 100644 --- a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md +++ b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md @@ -175,7 +175,7 @@ Booting the kernel. After that you should be able to ssh to QEMU instance in another terminal: ``` bash -ssh -i $IMAGE/ssh/id_rsa -p 10021 -o "StrictHostKeyChecking no" root@localhost +ssh -i $IMAGE/wheezy.id_rsa -p 10021 -o "StrictHostKeyChecking no" root@localhost ``` If this fails with "too many tries", ssh may be passing default keys before @@ -218,7 +218,7 @@ variables `$GOPATH`, `$KERNEL` and `$IMAGE` with their actual values. "workdir": "$GOPATH/src/github.com/google/syzkaller/workdir", "kernel_obj": "$KERNEL", "image": "$IMAGE/wheezy.img", - "sshkey": "$IMAGE/ssh/id_rsa", + "sshkey": "$IMAGE/wheezy.id_rsa", "syzkaller": "$GOPATH/src/github.com/google/syzkaller", "procs": 8, "type": "qemu", -- cgit mrf-deployment