Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/linux-on-qemu.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ Next we can copy the program to the QEMU platform using the `scp` command.
scp -P 2222 hello virt@localhost:

# SSH to qemu to run the program
ssh -P 2222 virt@localhost
ssh -p 2222 virt@localhost
./hello
```

Expand All @@ -494,7 +494,7 @@ Example session:
```
$ scp -P 2222 hello virt@localhost:
hello 100% 11KB 1.2MB/s 00:00
$ ssh -P 2222 virt@localhost
$ ssh -p 2222 virt@localhost
_ __ __
| | /| / /__ / /______ __ _ ___
| |/ |/ / -_) / __/ _ \/ ' \/ -_)
Expand Down