13
votes
5answers
3k 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.
9
votes
8answers
5k views
Map SSH drive in Windows
Does anyone know of a good (hopefully free) tool that can be used to map a SSH server as a Windows network drive (i.e. SCP)?
EDIT: SFTP not supported
EDIT2: Windows File Sharing/Samba not supported
…
7
votes
3answers
366 views
Is BitTorrent good for copy files between servers in the workplace?
I have 1 source server that contains about 30GB of files that I want to copy to 7 other servers. I currently SCP the files over to the first four servers and when that transfer is complete SCP to the …
7
votes
3answers
592 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" …
6
votes
5answers
4k 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 …
5
votes
5answers
272 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 …
4
votes
1answer
570 views
SCP for C#
Is there a library that provides the ability to do SCP transfers in C#?
3
votes
12answers
1k views
Best way to copy millions of files between 2 servers
I have roughly around 5 million small (5-30k) files in a single directory that I would like to copy to another machine on the same gigabit network. I tried using rsync, but it would slow down to a …
3
votes
3answers
1k 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
…
2
votes
1answer
23 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
2answers
108 views
How to find tty from which a particular cmd “scp” is executed
How can I find out who executed a particular command and which terminal was used to run it?
Original:
how can i know particular cmd is executed by whom and to know about my terminal
2
votes
2answers
383 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.
2
votes
2answers
198 views
Unable to use scp with a bash alias
The code does not work
scp ~/Desktop/favicon.ico nameOfBashAlias:/public_html/mySite/templates/blog/
The alias is
alias nameOfBashAlias='ssh myUsername@11.11.11.111'
How can you solve the …
2
votes
1answer
288 views
Error Trying To Make Easier rsync Command
I normally use scp to copy stuff, but now I'm trying to get used to the more powerful rsync command. It helps me use less bandwidth by copying up only files that have changed. However, rsync has a lot …
2
votes
4answers
424 views
How Do I Copy Up To An SSH Host All Folders and Files Except Certain Ones?
Using the Linux command line, I use the scp command to copy up all the files and folders from a certain directory. However, I don't like to consume wasted bandwidth for copying up things I rarely …
