Copying remote file to a specified path on local desktop using scp - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:21:31Zhttp://stackoverflow.com/feeds/question/952339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952339/copying-remote-file-to-a-specified-path-on-local-desktop-using-scp0Copying remote file to a specified path on local desktop using scp Naga Kiran2009-06-04T18:37:48Z2009-06-04T19:00:38Z
<p>I was trying to copy a file from remote server using SCP but its giving the following error.</p>
<pre><code>bash-3.2$ scp username@server:main.php C:\main.php
</code></pre>
<p><em>ssh: Could not resolve hostname C: hostname nor servname provided, or not known</em></p>
<p>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.</p>
<p>If i don't specify the path where to save on local desktop,its working fine. </p>
<pre><code>bash-3.2$ scp username@server:main.php main.php
main.php 100% 29KB 28.9KB/s 00:01
</code></pre>
<p>Appreciate any help..
Thanks in advance,</p>
<p>PS: Using Windows XP SP2</p>
http://stackoverflow.com/questions/952339/copying-remote-file-to-a-specified-path-on-local-desktop-using-scp/952366#9523663Answer by grawity for Copying remote file to a specified path on local desktop using scp grawity2009-06-04T18:43:47Z2009-06-04T18:43:47Z<p>If you are using Cygwin's <code>scp</code>, you might try using the Cygwin paths:</p>
<pre>scp user@host:main.php /cygdrive/c/main.php</pre>
<p><s>(though I'm not sure if it's <code>/c/</code> or <code>/cygdrive/c/</code> or whatever; I personally hate Cygwin.)</s></p>
<p>Or you could use the <code>pscp</code> and <code>psftp</code> commands included in the <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">PuTTY</a> package; they don't complain about Windows paths.</p>
<p>(Or use <a href="http://winscp.net/" rel="nofollow">a GUI</a>.)</p>
http://stackoverflow.com/questions/952339/copying-remote-file-to-a-specified-path-on-local-desktop-using-scp/952400#9524000Answer by Marquis Wang for Copying remote file to a specified path on local desktop using scp Marquis Wang2009-06-04T18:49:12Z2009-06-04T18:49:12Z<p>@grawity is right. In the future, you can run also</p>
<pre><code>pwd
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/952339/copying-remote-file-to-a-specified-path-on-local-desktop-using-scp/952453#9524531Answer by kevin bailey for Copying remote file to a specified path on local desktop using scp kevin bailey2009-06-04T19:00:38Z2009-06-04T19:00:38Z<p>Use PSCP.exe</p>
<p>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.</p>
<p>Using pscp.exe (free) you can do what you want.</p>