How would you copy a file that is called evidence from the local system to a Linux host at 192.168.1.33?
scp evidence [email protected]:evidence
scp [email protected]:evidence evidence
ssh evidence [email protected]:evidence
ssh [email protected]:evidence evidence
Explanation & Hint:
To copy a file called “evidence” from the local system to a Linux host at 192.168.1.33, you should use the
This command will copy the “evidence” file from the local system to the home directory of the user on the remote Linux host at IP address 192.168.1.33. The remote filename will remain the same, “evidence.” |