1. Computer mit Knoppix ohne graphische Oberfäche starten (knoppix 2)
  2. SLAVE (Ziel)
    • nc -l -p 9000 | pv -b > eg.gz
  3. MASTER (Quelle)
    • dd if=/dev/sda[x] | gzip -9 | nc -q 5 192.168.100.x 9000

oder

Empfänger
# nc -l -p 10003 > host_hda1
Sender:
# dd if=/dev/hda1 | gzip > host_hda1.gz | nc -n -w 10 <ip-des-Empfängers> 10003