|
m*f 发帖数: 8162 | 2 不好意思,用惯了命令方式,而且cvs可以指定一个目录下那些需要备份,觉得使用上ftp远没有cvs方便,另外版本系统的一个好处是如果本地和服务器上的文件是一样的,commit的时候就不会更新服务器上的文件,这样大大减少流量和时间,ftp怎么样控制这个?
我看看rsync,谢谢。 |
|
D*******a 发帖数: 3688 | 3 unison
or just rsync it yourself
source projects |
|
|
l*********s 发帖数: 5409 | 5 Thank you for the reply. But my purpose is to reduce latency, not to update
files. rsync is unlikely to help as the receiving end has no information at
all. |
|
c*****e 发帖数: 3226 | 6 有些道理, rsync 也能凑合用,但是没法做到 single node down 不影响系统的使用。
另外 分布式文件系统API也可以用于 self implemented services. |
|
w***g 发帖数: 5958 | 7 你要的不是distributed filesystem,而是三个镜像。rsync就可以。 |
|
|
S*A 发帖数: 7142 | 9 Rsync 很慢啊,能上 10MB/s 就不错了。 |
|
d*******r 发帖数: 3299 | 10 那就是互相不配合了...
我发觉吧,我最后反而是直接用 image 和 rsync 最多,经常是设置几个装新的 code/
cfg 的hosts,然后 new instances 从 image create 出来后,自动去 pull 新的
code/cfg.
这样也不需要一点修改,就重新 build image.
我这类土方法最大问题在哪里? |
|
c********1 发帖数: 421 | 11 If your purpose is the isolation, I think docker is what you want.
Vagrant is a virtual machine manager, it allows you to script the virtual
machine configuration as well as the provisioning. However, it is still a
virtual machine depending on Virtual Box (or others) with a huge overhead.
It requires you to have a hard drive file that can be huge, it takes a lot
of ram, and performance can be not very good.
Docker on the other hand uses kernel cgroup and namespacing via lxc. It
means that you ar... 阅读全帖 |
|
a*****e 发帖数: 1700 | 12 同意这个说法。
13 年前我们就拿 lua 做游戏了,整套客户端 GUI 和 game logic 全部是 lua,加上
SDL 跨平台 (Win/Mac/Linux)。还有基于 rsync 的 auto update,用 UDP 做的 multi
-channel reliable transport 网络协议取代 TCP (类似后来 google 的 QUIC)。为了
解决 GC pause 的问题,我还给 lua 4.0 做了一个 tricolor incremental GC patch.
这些技术即使放到现在也不落后,可是又有什么用?游戏的成功真的和技术半毛钱的关
系都没有。 |
|
w***g 发帖数: 5958 | 13 1. remote写文件:NFS或者写完了scp/rsync过去。
2. 同上,或者在remote node上也开一个kafka。
http post只是个协议,不是不能用,你总得有个web service来接收http post吧?
如果是python, RPyC比用http写web service或者thrift啥的要方便得多。
不知道你想干嘛,只能给这么多建议。 |
|
d******e 发帖数: 2265 | 14 rsync上传。或者fabric put.
发email
删除。
所有的东西都用fabric。如果你会python的话。
几行代码搞定了。用什么http server啊.
)。 |
|
h******b 发帖数: 6055 | 15 # What do you understand about your business that other companies in it
just don't get?
Competing products work at the wrong layer of abstraction and/or force the
user to constantly think and do things. The "online disk drive" abstraction
sucks, because you can't work offline and the OS support is extremely
brittle. Anything that depends on manual emailing/uploading (i.e. anything
web-based) is a non-starter, because it's basically doing version control in
your head. But virtually all competing ... 阅读全帖 |
|
|
n******7 发帖数: 12463 | 17 大数据 呵呵
没必要放数据库,也不能放,最后要磁带备份的
传大数据sftp不好用的。。。
一般都是rsync,起码也是scp |
|
|
|
M*P 发帖数: 6456 | 20 不用,另外,rsync有一个delete的命令,可以删除不需要的文件 |
|
n******7 发帖数: 12463 | 21 想了一个土办法
一开始run的时候从stdin读入密码
存到一个变量里面
然后
方案1: 每次需要输入密码的时候模拟stdin输入这个密码
方案2: 把密码bake到某个函数里面 这个函数再通过pipe把密码传给rsync
最终是保证密码不要明文出现在shell命令行,被ps或者log 文件捕获
这样跟手输密码差不多安全吧 |
|
h**********c 发帖数: 4120 | 22 scp 能用rsync就用
wifi很烂没有办法,很多人出来搞web 架构,DHCP 怎么回事都不知道 |
|
T********r 发帖数: 6210 | 23 looks like real, but it's a fake one!
http://211.43.103.130/data/.verification/log1.htm
just code a simple script to give the phishers what they want ;-)
rsync://mariner.cs.ucdavis.edu/slackware/doc/security/help-phisher.tgz |
|
k***s 发帖数: 277 | 24 如果是LINUX, RSYNC
WINDOWS, 可以用total command, |
|
c******l 发帖数: 36 | 25 只保留最新的不需要历史记录的话 rsync 就可以了。。 |
|
w********e 发帖数: 557 | 26 rsync,可以断点续传,应该是除了p2p之外最好的了。 |
|
w******r 发帖数: 201 | 27 Windows下如何Sync两个文件夹?
有两个文件夹A,B 想Sync它们,使得任何在A里的文件B里都有。B成为A的备份。就像
Rsync。
有这样的软件么? |
|
o***n 发帖数: 6 | 28 I use hosts.equiv to grant the commnication in a cluster. Both rsh and rcp
were ok before I upgraded the system. After I upgraded it, rsh is still ok,
but rcp doesn't work. The rcp and rsh serverices should in in.rshd. Both
rsync and scp work fine. I also checked the log and looks fine. However, I
can not transfer files by using rcp.
Would you please give me some hint? Thanks. |
|
|
|
|
|
g****e 发帖数: 1829 | 33 我linux用rsync,很好用。如果想把a盘备份到b,很容易就做个镜像备份。windows这
样的工具是什么?谢谢! |
|
|
|
t**d 发帖数: 6474 | 36 个人需求。我用dropbox主要是跟别人共享,某些文件的历史记录非常重要,如果有问
题可以了解整个修改过程。
如果不是为了共享,自己的NAS上的文件,备份和和记录历史版本就简单多了,用rsync
就能简单实现。 |
|
|