vote up 0 vote down star

I was trying to copy a file from remote server using SCP but its giving the following error.

bash-3.2$ scp username@server:main.php C:\main.php

ssh: Could not resolve hostname C: hostname nor servname provided, or not known

Its assuming C: as hostname but its just the drive name..Please let me how to specify explicitly like some escaping to get rid of this issue.

If i don't specify the path where to save on local desktop,its working fine.

bash-3.2$ scp username@server:main.php main.php
main.php                                                                   100%   29KB  28.9KB/s   00:01

Appreciate any help.. Thanks in advance,

PS: Using Windows XP SP2

flag

This would be a good one on ServerFault.com – C. Ross Jun 4 at 18:47

3 Answers

vote up 1 vote down check

Use PSCP.exe

The problem you are having is because you are referencing your windows xp drive from the shell which you cannot do. You are logged on remotely to a machine so unless your windows xp box has a ssh server running in which case you would use login and pw info for the destination location, you will cannot do that.

Using pscp.exe (free) you can do what you want.

link|flag
Thanks for all your quick help. pscp solved my problem. – Naga Kiran Jun 4 at 19:22
vote up 3 vote down

If you are using Cygwin's scp, you might try using the Cygwin paths:

scp user@host:main.php /cygdrive/c/main.php

(though I'm not sure if it's /c/ or /cygdrive/c/ or whatever; I personally hate Cygwin.)

Or you could use the pscp and psftp commands included in the PuTTY package; they don't complain about Windows paths.

(Or use a GUI.)

link|flag
It's actually /cygdrive/c . – Adam Rosenfield Jun 4 at 18:44
Ah, thanks. [updates] – grawity Jun 4 at 18:45
vote up 0 vote down

@grawity is right. In the future, you can run also

pwd

to find out what directory you're in, so that you can figure out the correct path to the directory you want according to cygwin.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.