-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from jorgencorrea/patch-1
Added -O to the scp command
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -320,7 +320,7 @@ You can also use Ubuntu installed in a virtual machine, Ubuntu installed via WSL | |
``` | ||
After the compilation is successful, send the generated `helloworld` executable program to the Duo device through the network port or the USB network. For example, the USB-NCM method supported by the [default firmware](https://github.com/milkv-duo/duo-buildroot-sdk/releases), Duo’s IP is 192.168.42.1, the user name is `root`, and the password is `milkv`. | ||
``` | ||
scp helloworld [email protected]:/root/ | ||
scp -O helloworld [email protected]:/root/ | ||
``` | ||
After sending successfully, run `./helloworld` in the terminal logged in via ssh or serial port, and it will print `Hello, World!` | ||
``` | ||
|