4

I'm a bit new to the command line and UNIX but am finding it hugely useful. Is it possible for me to rsync from putty on my windows 7 machine to my virtual server?

If not what are my other command line options? I just want to update my cms scripts without having to SFTP into each website account with Filezilla. A nice rsync command would suit me better.

user9517
  • 115,471
  • 20
  • 215
  • 297
firefusion
  • 303
  • 2
  • 3
  • 8

4 Answers4

3

Consider using cwRsync, a packaging of rsync for Windows. PuTTY by itself does not provide rsync.

justarobert
  • 1,869
  • 13
  • 8
3

Cygwin is a way to run a Linux-like environment on window. Among other things it provides a rsync binary.

http://www.cygwin.com/

Cosu
  • 236
  • 1
  • 4
3

Have a look at Deltacopy which is a windows implementation of rsync. The package contains just what you need to do the job.

user9517
  • 115,471
  • 20
  • 215
  • 297
2

I use rsync in Cygwin on Win-XP to transfer files to and from a Linux virtual server. If your Centos server has a name which Windows 7 understands, it might be as simple as

rsync -avz --progress ~/sortdata/ root@centos:/var/www/sort/

It's not necessary to use Putty - that would probably mean logging into the Centos server and doing the rsync in the opposite direction.

BTW, keep using that command-line -- it gets easier with practice.

pavium
  • 674
  • 5
  • 8