Benutzer-Werkzeuge

Webseiten-Werkzeuge


clonen_in_datei
  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
  • 192.168.100.x = SLAVE IP

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
clonen_in_datei.txt · Zuletzt geändert: 2008/10/23 18:15 (Externe Bearbeitung)