diff options
| author | Magicansk <30593595+magicansk@users.noreply.github.com> | 2017-11-01 15:49:29 +0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-11-01 10:51:24 +0300 |
| commit | e775312e813c7998bdf5e3bddef465bfa785b8d8 (patch) | |
| tree | 2f306a64c899c683f0c5035d37a30e1d6b281cce /docs/linux | |
| parent | 2de9b5257d641587df4f6d22ebc374dca02a56b3 (diff) | |
Update troubleshooting.md
Fixed MD syntax.
Diffstat (limited to 'docs/linux')
| -rw-r--r-- | docs/linux/troubleshooting.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/linux/troubleshooting.md b/docs/linux/troubleshooting.md index be9b0fc91..d805adc3b 100644 --- a/docs/linux/troubleshooting.md +++ b/docs/linux/troubleshooting.md @@ -7,13 +7,17 @@ Here are some things to check if there are problems running syzkaller. and `KERNEL` is set to the test kernel (as per the `kernel` config value) then something like the following command should start the VM successfully: - ```qemu-system-x86_64 -hda $IMAGE -m 256 -net nic -net user,host=10.0.2.10,hostfwd=tcp::23505-:22 -enable-kvm -kernel $KERNEL -append root=/dev/sda``` + ```shell + qemu-system-x86_64 -hda $IMAGE -m 256 -net nic -net user,host=10.0.2.10,hostfwd=tcp::23505-:22 -enable-kvm -kernel $KERNEL -append root=/dev/sda + ``` - Check that inbound SSH to the running virtual machine works. For example, with a VM running and with `SSHKEY` set to the SSH identity (as per the `sshkey` config value) the following command should connect: - ```ssh -i $SSHKEY -p 23505 root@localhost``` + ```shell + ssh -i $SSHKEY -p 23505 root@localhost + ``` - Check that the `CONFIG_KCOV` option is available inside the VM: - `ls /sys/kernel/debug # Check debugfs mounted` |
