2
votes
1answer
198 views

How to copy a partition over network

I want to copy a Windows 7 partition that came installed on my laptop to my desktop computer. I've tried: # bzip2 -c /dev/sda5 | nc 192.168.1.1 2222 # on laptop # nc -l 2222 | bzip2 -d > ...
1
vote
1answer
231 views

netcat throughput low but iperf high [closed]

I was testing the throughput between two pcs connected on the same router: one with 100mbps lan, the other with 54mbps wifi. I tested both netcat and iperf and the throughtput I get is only 2.6mb/s. ...