44
6
I try to copy files from a linux (ubuntu) machine to an external hard drive mounted on a mac but got an error message :
scp: ambiguous target
What I did is, I'm on a mac, ssh to the linux machine where files are. Then use the following command :
scp fileToCopy myMacUser@myMacMachine:/Volumes/MyExternalDrive/targetDirectory
What did I do wrong ? What is the good command to use in this case ?
Happened to me when I had an extra param (
-t
; a remnant from a previousssh
command) in the arg list; apparently it is not supported byscp
but the error I got wasambiguous target
:( – Janaka Bandara – 2018-09-12T11:11:07.417