Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 2 章 檔案傳輸

目錄

2.1. 跨伺服器檔案傳輸
2.1.1. scp - secure copy (remote file copy program)
2.1.2. nc - TCP/IP swiss army knife
2.2. wget - retrieves files from the web
2.2.1. 下載所有圖片
2.2.2. mirror
2.2.3. reject
2.2.4. ftp 下載
2.3. axel - A light download accelerator - Console version

2.1. 跨伺服器檔案傳輸

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

限速1M

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

指定 identity_file 檔案

scp -i /path/to/id_dsa user@host:/path/to/ceph.conf $conf
		

2.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 -