Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 59 章 文件传输

目录

59.1. 跨服务器文件传输
59.1.1. scp - secure copy (remote file copy program)
59.1.2. nc - TCP/IP swiss army knife
59.2. wget - retrieves files from the web
59.2.1. 下载所有图片
59.2.2. mirror
59.2.3. reject
59.2.4. ftp 下载
59.3. axel - A light download accelerator - Console version

59.1. 跨服务器文件传输

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

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