Home | Mirror | Search

第 4 章 File Synchronize

目錄

1. 跨伺服器檔案傳輸
1.1. scp - secure copy (remote file copy program)
1.2. nc - TCP/IP swiss army knife
2. rsync - fast remote file copy program (like rcp)
2.1. 安裝Rsync與配置守護進程
2.1.1. install with source
2.1.2. install with aptitude
2.1.3. xinetd
2.2. rsyncd.conf
2.3. upload
2.4. download
2.5. mirror
2.6. step by step to learn rsync
2.7. rsync examples
2.7.1. rsync delete
2.7.2. backup to a central backup server with 7 day incremental
2.7.3. backup to a spare disk
2.7.4. mirroring vger CVS tree
2.7.5. automated backup at home
2.7.6. Fancy footwork with remote file lists
2.8. rsync for windows
2.9. 多進程 rsync 腳本
2.10. 數度限制
3. tsync
4. Unison File Synchronizer
4.1. local
4.2. remote
4.3. config
5. csync2 - cluster synchronization tool
5.1. server
5.2. node
5.3. test
5.4. Advanced Configuration
5.5. 編譯安裝
6. synctool

1. 跨伺服器檔案傳輸

1.1. scp - secure copy (remote file copy program)

限速1M

# scp -l 1000 /www/index.html root@172.16.0.1:/www
		

1.2. nc - TCP/IP swiss army knife

tar 通過nc發送到另一端

# Server
$ tar cf - win98 | nc -l -p 5555

# Backup Machine
nc server_ip/server_doman_name 5555 | tar xf -		
		
comments powered by Disqus