|
|
1
0
您可以连接到2个服务器并手动发出fxp命令。
|
|
|
2
0
你应该用 rsync 这样做。 直接从他们的网站: rsync is a file transfer program for Unix systems. rsync uses the "rsync
algorithm" which provides a very fast method for bringing remote files into
sync. It does this by sending just the differences in the files across the
link, without requiring that both sets of files are present at one of the
ends of the link beforehand.
Some features of rsync include
* can update whole directory trees and filesystems
* optionally preserves symbolic links, hard links, file ownership,
permissions, devices and times
* requires no special privileges to install
* internal pipelining reduces latency for multiple files
* can use rsh, ssh or direct sockets as the transport
* supports anonymous rsync which is ideal for mirroring
|
|
|
3
0
不确定rsync的建议,因为rsync不支持通过ftp镜像,我上次检查过。 如果您想要镜像文件,一个好的方法是wget使用-mirror选项,或者签出ftpcopy。 |