Tagged Questions

Secure Copy or SCP is a means of securely transferring computer files between a local and a remote host or between two remote hosts.

learn more… | top users | synonyms

18
votes
7answers
22k views

How to scp in python?

What's the most pythonic way to scp a file in Python? The only route I'm aware of is os.system('scp "%s" "%s:%s"' % (localfile, remotehost, remotefile) ) which is a hack, and which doesn't work ...
18
votes
5answers
16k views

How do I copy a file to a remote server in python using scp or ssh?

I have a text file on my local machine that is generated by a python script run daily in cron. I would like to add a bit of code to have that file sent securely to my server over ssh. Help.
14
votes
7answers
11k views

scp via java

What is the best method of performing an scp transfer via the Java programming language? It seems I may be able to perform this via JSSE, JSch or the bouncy castle java libraries. None of these ...
11
votes
4answers
2k views

Using Mercurial, is there an easy way to diff my working copy with the tip file in the default remote repository

When using mercurial, I'd like to be able to diff the working copy of a file with the tip file in my default remote repository. Is there an easy way to do this? I know I can do an "hg incoming -p" ...
9
votes
1answer
124 views

PHP Exec SCP does not copy the file to the remote server

I need a file from a server to another server (I own both) using PHP. I have the following script: <?php exec('scp /home/pat/file1.tst pat@myserver.com:/home/pat/file1.txt'); I get this error: ...
7
votes
1answer
5k views

Ant scp task not working, even with jsch on ant/lib

I need to copy a war file via scp. I have added the jsch-0.1.42.jar to $ANT_HOME/lib but I'm still getting this error: Cause: the class org.apache.tools.ant.taskdefs.optional.ssh.Scp was not ...
7
votes
1answer
3k views

SCP for C#

Is there a library that provides the ability to do SCP transfers in C#?
6
votes
4answers
8k views

How do I create a directory on remote host if it doesn't exist without ssh-ing in?

I'm not sure if this is possible or not, Basically, I'm writing a script that allows me to scp a file to my hosting. This is it so far. Arg 1 is the file and arg 2 is the folder i want it to be ...
6
votes
3answers
4k views

Object Oriented C++ library for ssh and scp

Is there any Object Oriented C++ library for ssh and scp. BSD license would be preferred. I could find libssh and libssh2. But these are all procedural.
6
votes
5answers
576 views

Create local backup when editing remote files via netrw in vim

I work with many files remotely using vim and the netrw plugin. I also keep timestamped backups by changing the &backupext (found in the documentation). While working in a remote file ...
5
votes
2answers
58 views

What is the fastest and safest way to move an SVN repository from one host to another?

I have two SVN repositories about 1.5 GB each that I need to move from one CentOS 5.4 Linux machine to another. They are up into the three to four thousand revision range. I could simply scp -r them ...
4
votes
2answers
238 views

PHP ssh2_scp_send file permissions

I am using the PHP function ssh2_scp_send to transfer files from one server to another. The interesting things is that if I write the permission in it's octal form (ie 0644) directly everything works ...
4
votes
4answers
16k views

how to use ssh from Windows cmd [closed]

How can I use ssh & scp from the Windows cmd.exe? I remember I installed a program in the past that let me do this but can't remember now what it was. (I don't mean putty)
4
votes
10answers
6k views

Is there any WinSCP equivalent for linux?

I love WinSCP for Windows. What are the best equivalent softwares for linux? I tried to use sshfs to mount the remote file system on my local machine, but it is not as user friendly as simply ...
4
votes
3answers
5k views

How to best capture and log scp output?

I am trying to capture output from an install script (that uses scp) and log it. However, I am not getting everything that scp is printing out, namely, the progress bar. screen output: Copying ...
4
votes
4answers
14k views

How to pass password to scp?

I know it is not recommended, but is it at all possible to pass the users password to scp? I'd like to copy a file via scp as part of a batch job and the receiving server does of course need a ...
3
votes
1answer
26 views

variable in scp filename not working?

I'm trying to scp a backup tgz file from one server to another every night. The backup script uses the following $date var just fine but when I modify it slightly for scp it breaks: #!/bin/sh ...
3
votes
2answers
200 views

How can I scp a file and run an ssh command asking for password only once?

Here's the context of the question: In order for me to be able to print documents at work, I have to copy the file over to a different computer and then print from that computer. (Don't ask. It's ...
3
votes
2answers
372 views

Perl Net::SSH2 scp_put puts file and then hangs

I'm using Net::SSH2's scp_put method to place one file in my home directory on a Unix server from a Windows box. I am using Strawberry Perl 5.12 (portable version). I installed the libssh2 1.2.5 ...
3
votes
2answers
768 views

twisted conch filetransfer

I am trying to implement a very simple file transfer client in python using twisted conch. The client should simply transfer a few files to a remote ssh/sftp server in a programatic way. The function ...
3
votes
2answers
322 views

error when exec'ing scp from python

this code is giving following error: os.system("scp %s:/export/home/sample/backup.sql %s:/home/rushi/abc.sql" % (a, b)) Permission denied (publickey,keyboard-interactive). lost connection a and b ...
3
votes
5answers
1k views

How can I transfer a file using scp without a password from a Perl script?

I am writing a Perl script that needs to transfer files between computers using scp. I know about public key authentication, but I need the script to be fully automated, so I can't visit the machines ...
3
votes
2answers
1k views

Is there a way to specify the location of a local jsch.jar from within build.xml?

build.xml contains <scp> and <sshexec> tasks, so I provide jsch.jar and other libraries in the same directory together with build.xml. The following taskdef: <taskdef name="scp" ...
3
votes
1answer
460 views

SharpSSH's Scp object can't copy files bigger than 2GB

Whenever I try to copy a file that's bigger than 2GB, I get an array index out of bounds exception in the Get method: Scp myScp = new Scp("remotehost", "joe", "mypassword"); myScp.OnTransferProgress ...
3
votes
1answer
2k views

Uploading a File via SCP with Maven fails

I try to upload an ear created by maven to an application server using scp. When I tried to run mvn wagon:upload-single But I get the following error: [ERROR] Failed to execute goal ...
3
votes
2answers
313 views

The @ in a for loop while using scp

Please take a look at this line: ${server_username}:${server_password}@@{server}:/tmp The double @@ causes problems. Instead of user:pass@server it displays as user:passserver and therefore is ...
3
votes
5answers
2k views

How to filter files when using scp to copy dir recursively?

I need to copy all the .class files from server to local with all dir reserved. e.g. server:/usr/some/unknown/number/of/sub/folders/me.class will be ...
2
votes
1answer
118 views

Secure Copy File from remote server via scp and os module in Python

I'm pretty new to Python and programming. I'm trying to copy a file between two computers via a python script. However the code os.system("ssh " + hostname + " scp " + filepath + " " + user + "@" + ...
2
votes
3answers
164 views

cp command fails when run in a script called by Hudson

This one is a puzzler. If I run a command from the command line to copy a file remotely it works perfectly. If I run that same command inside a script on the server (that hosts Hudson), it runs ...
2
votes
2answers
156 views

How to check if scp command is available?

I am looking for a multiplatform solution that would allow me to check if scp command is available. The problem is that scp does not have a --version command line and when called without parameters ...
2
votes
2answers
631 views

Scp command syntax for copying a folder from local machie to a remote server [closed]

I am using putty for copying files from local machine to remote server.My folder is in C:/site can any one give syntax for copying folder from C:/site to remote server using scp
2
votes
0answers
213 views

Is there any way of having maven scp wagon work consistently on linux/mac/windows platform?

Given the very poor documentation about scp/ssh and maven I tried different approaches, basically falling in two main categories: using scpexe wagon and scp wagon. Usually they both work without issue ...
2
votes
2answers
1k views

bash: check if remote file exists using scp

I am writing a bash script to copy a file from a remote server, to my local machine. I need to check to see if the file is available, so I can take an alternative action if it is not there. I know ...
2
votes
2answers
692 views

How to copy file from remote server in shell script?

I need write script for copy remote server files to here automatically on server backend. something like below: #!/usr/bin/expect -f spawn /usr/local/bin/scpdata.sh set timeout 3000 ...
2
votes
1answer
246 views

Perl SCP ERROR(Asking to Continue?)

Here's is what I am doing my $username = "user"; my $password= "pass"; my $host="xxx.xxx.xxx.xxx"; my $scpe = Net::SCP::Expect->new(user => $username, ...
2
votes
3answers
267 views

scp a bunch of files via bash script: there must be a better way

I currently have the following bash script: for a in `seq 16 75`; do scp doneill@server:/mnt/device/folder/numbered_file$a.txt ./; done; while this does work, it is very slow. Each file, the ...
2
votes
1answer
327 views

How to ssh to a remote server behind multiple firewalls? [closed]

Here is my situation I could access Server A from my home laptop via ssh. Server B is only accessible from Server A via ssh. Server C is only accessible from Server B via ssh. Is there anyway ...
2
votes
1answer
560 views

Linux: uploading unfinished files - with file size check (scp/rsync) [closed]

I typically end up in the following situation: I have, say, a 650 MB MPEG-2 .avi video file from a camera. Then, I use ffmpeg2theora to convert it into Theora .ogv video file, say some 150 MB in size. ...
2
votes
1answer
289 views

Performance issues with Ruby and Net::SCP transfers (sockets)

SCP upload speeds seem to be limited greatly in the library from what the command line scp utility is capable of. I understand this is Ruby (1.9.2-p0), but Net::SCP is approximately 8x slower than the ...
2
votes
2answers
902 views

Bash script to scp newest file in a directory on a remote server

Ok so I kinda know how to do this locally with a find then cp command, but don't know how to do the same remotely with scp. So know this: scp -vp me@server:/target/location/ /destination/dir/. ...
2
votes
1answer
1k views

SCP with Ruby and a private key

I have a small problem here: I try to upload a file using SCP and Ruby to a server using a private key. The code looks like: def transfer_file(source_file, destination_file) $log.info("ScpDP: ...
2
votes
2answers
3k views

Getting ANT to scp only new/changed files

I would like to optimize my scp deployment which currently copies all files to only copy files that have changed since the last build. I believe it should be possible with the current setup somehow, ...
2
votes
3answers
659 views

how to perform ssh and scp equivalent function in python code

I want to login in different machine in the network and copy a file from that machine to my machine.I want to do this using python.Any idea how can i do this .I have python 2.5 a nd ubuntu 8.10
2
votes
2answers
981 views

Net::SCP / Net::SCP::Expect - how to deal with password vs key authentication

I have a script that works on different clients, and need to SCP files to different hosts. Depending on the combination of client & server, I may need to use password authentication or public key ...
2
votes
3answers
828 views

Moving a git repo to another server

I have a git clone/repo on a development server, but I am now moving to another one. I don't want to commit all my local branches and changes to the main repository, so how can I make an exact copy of ...
2
votes
2answers
1k views

cURL php extension for windows with SCP and SFTP support

I switched over to zendserver(VS8 php(5.3) binaries), and now curl(7.19.4) seems to be lacking SCP and SFTP protocol support(verified by errors and phpinfo). Curl itself is installed correctly, it's ...
2
votes
2answers
268 views

scp on WebClient class in .Net

I have a project already written using .Net's WebClient class. It works great for FTP and WebDAV resources, but how can I get it to work with SCP or SFTP?
2
votes
8answers
2k views

How to respond to password prompt when using SCP in a shell script?

First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation. I would like to scp the ...
2
votes
7answers
13k views

Automate scp file transfer using a shell script

I have some n number of files in a directory on my unix system . Is there a way to write a shellscript that will transfer all those files via scp to a remote system, i specify . Ill specify the ...
2
votes
3answers
272 views

How can I detect if scp service is available at remote host with out sending the file?

Could you please suggest a way to detect if the scp service is available on a server without the need for an account and/or password? I am trying to figure out how to tell if Net::SCP->new( ...

1 2 3 4 5