Re: Transferring between Linux server and 7750
Posted: 06 Jun 2016 09:29
There's a space and a dot at the end that you're missing.
So for your example
There's a space and a dot at the end. The dot means that the destination for the file is the current directory (with the same name as the source). You need to be able to write the file to the current working directory you're in.
Or you can give the name of the destination file:
or for example, to put the file in your home directory:
So for your example
Code: Select all
scp 26.13.13.14:TS1_SR08_06062016 .Or you can give the name of the destination file:
Code: Select all
scp 26.13.13.14:TS1_SR08_06062016 TS1_SR08_06062016Code: Select all
scp 26.13.13.14:TS1_SR08_06062016 ~/TS1_SR08_06062016