After using a cross compiler to create binaries, how do I transfer those binaries from my host to target?
SSH has “scp” in its list of abilities. “scp” copies via ssh. So for example:
scp ./some_file ubuntu@the_tx2_address /home/ubuntu/Downloads
“scp” has various options, such as glob style wildcards and recursive copy. See “man scp”.
“sftp” also works, and tends to be useful when doing multiple interactive transfers.
Then there are also the old fashioned thumb drive or SD card copy methods.