up vote 0 down vote favorite
share [g+] share [fb]

I have several images uploaded worth 1GB on the remote server that I want to download locally, but not continuously.

I tried using rsync reading its (excellent) man page but found repeated protocol issues and gave up. (There is some problem with rsync when bashrc is changed. I cant in good mind edit or change my bashrc just for this.)

What are the other alternatives to sync a folder unidirectional, but incremental.

FYFI, the following is the rsync command I used

rsync -e ssh -avz user_name@ftp.imcruis.in:chikmaglur-trip Desktop/Malnad2/
link|improve this question
It's a bit hazy what exactly you mean with "continously" and "incremental". – towo Jul 17 '09 at 9:50
And this didn't work because rsync didn't like your .bashrc?? – innaM Jul 17 '09 at 10:24
Manni: Yes. Thats what I found by googling. – Lakshman Prasad Jul 17 '09 at 11:01
Maybe your question should be "How do I fix my problem with rsync?" Instead of "How do I find another tool besides rsync because I can't make rsync work?" – davr Jul 17 '09 at 19:51
feedback

2 Answers

up vote 2 down vote accepted

Well, you could just work with wget --continue --mirror.

link|improve this answer
Exactly. But how. Thanks in advance! – Lakshman Prasad Jul 17 '09 at 10:09
feedback

export RYSNC_RSH=ssh rsync -avz user@:

If that does not work, what is the error you get?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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