linux大文件上传(nc)

0.nc源码安装

下载:

wget -c -t 0 https://jaist.dl.sourceforge.net/project/netcat/netcat/0.7.1/netcat-0.7.1.tar.gz


安装:

linux大文件上传(nc)_第1张图片
http://www.weizn.net/?post=103

===========================================

先启动接收方(ip 172.16.36.78)

nc -l 5555 | tar -zxvf -


再启动发送方

tar -zcvf - ./11 | nc 172.16.36.78 5555

===========================================

1. nc -l 8888 > xxx  

2. nc ip 8888 < xxx


参考:

nc(netcat)扫描开放端口

https://www.cnblogs.com/lsdb/p/6874088.html

你可能感兴趣的:(linux大文件上传(nc))