--
You received this message because you are subscribed to the Google Groups "Alt-F" group.
To post to this group, send email to al...@googlegroups.com.
To unsubscribe from this group, send email to alt-f+un...@googlegroups.com.
Visit this group at http://groups.google.com/group/alt-f?hl=en.
To view this discussion on the web visit https://groups.google.com/d/msg/alt-f/-/AhJvpshxYeYJ.
Hi,Wondered if you could helpI am using the following to copy files from one nas to another:scp -r root @ 192.168.2.115:/mnt/sdb2/Movies/ /mnt/sdb2/Everything works fine but its slow to copy.
Looking around i see I can use -c switch but when I try -c arcfour or -c blowfish it ignores -c...... in the command
Am I doing this wrong?
TIA
Me again :)All I want to do is copy files from one NAS to the other, both are intenal without intenet access so security for copying not an issue.I would like to know the best way to copy the files from one to the other. I am moving files from one NAS that has 2TB HDD and want to move them to another NAS with 3TB HDD inIf you could explain the easiest and fastest way to copy the files that would be greatTIA
Me again :)All I want to do is copy files from one NAS to the other, both are intenal without intenet access so security for copying not an issue.I would like to know the best way to copy the files from one to the other. I am moving files from one NAS that has 2TB HDD and want to move them to another NAS with 3TB HDD inIf you could explain the easiest and fastest way to copy the files that would be great
--
You received this message because you are subscribed to the Google Groups "Alt-F" group.
To post to this group, send email to al...@googlegroups.com.
To unsubscribe from this group, send email to alt-f+un...@googlegroups.com.
Visit this group at http://groups.google.com/group/alt-f?hl=en.
To view this discussion on the web visit https://groups.google.com/d/msg/alt-f/-/bmXv9dluhC8J.
I'm personally a big fan of rsync for situations like this, mainly because it is good at keeping permissions, links (even hard-links), etc, and as a bonus, it will allow you to pick up where you left off if the copy is interrupted.I'm not sure where rsync stands in the speed department.
By default it uses encryption, but it can be setup to go without.
On Wednesday, January 23, 2013 4:09:50 PM UTC, Christian Lobaugh wrote:I'm personally a big fan of rsync for situations like this, mainly because it is good at keeping permissions, links (even hard-links), etc, and as a bonus, it will allow you to pick up where you left off if the copy is interrupted.I'm not sure where rsync stands in the speed department.
I agree, rsync is good to keep things in sync, but it is not fast.Because of that slowness, Alt-F backup script does a plain copy for the first backup, and then for the next backups it uses rsync.When the source is not local, it mounts the source locally for NFS/CIFS or updates the mirror copy for FTP/HTTP, then proceeds as in above.Much faster then doing a rsync over machines (for the case of our small box)By default it uses encryption, but it can be setup to go without.How can that be accomplished? Please give a cmdline example for Alt-F. I was not able to use the --rsh option...
As a matter of fact I'm not particularly fond of rsync... Its only advantage, in my opinion, is the way how it keeps files in sync, by transmitting only the (compressed) differences between them; this shows that it was conceived for low bandwidth situations and no consideration for low power computers (the delta-xfer algorithm). And the default way of establishing that files are in sync, using its length, is... well...And it is helpless for a real life resync, say between your two or three laptops/computers, when you might have doing changes in all of them and don't remember which.For this situation, 'unison' is a winner, with multiparty syncing (but unison is now too old and not maintained anymore I think)
I know there is an option to have it compress things to lower bandwidth, but this does not necessarily mean faster transfer as you have to take into consideration CPU usage, etc. My guess is that it will not be as fast as ftp/wget on the DNS machines, but it should run significantly faster than scp if you use it without encryption, and offers some things that ftp does not.If you just want to move the files and don't care about the other stuff, then ftp/wget will be your fastest option.
--
You received this message because you are subscribed to the Google Groups "Alt-F" group.
To post to this group, send email to al...@googlegroups.com.
To unsubscribe from this group, send email to alt-f+un...@googlegroups.com.
Visit this group at http://groups.google.com/group/alt-f?hl=en.
To view this discussion on the web visit https://groups.google.com/d/msg/alt-f/-/0tczbQXeQCMJ.