Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

第 68 章 檔案傳輸

目錄

68.1. 跨伺服器檔案傳輸
68.1.1. scp - secure copy (remote file copy program)
68.1.2. nc - TCP/IP swiss army knife
68.2. wget - retrieves files from the web
68.2.1. 下載所有圖片
68.2.2. mirror
68.2.3. reject
68.2.4. ftp 下載
68.3. axel - A light download accelerator - Console version

68.1. 跨伺服器檔案傳輸

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

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