Tagged Questions
4
votes
6answers
1k views
How can I know if netcat & dd are working?
I'm running on server A (Source):
dd bs=16M if=/dev/sda|bzip2 -c|nc serverB.example.net 19000
On server B (Destination):
nc -l -p 19000|bzip2 -d|dd bs=16M of=/dev/sdb
Do I need to see some ...
9
votes
8answers
8k views
How to set up disk cloning with dd, netcat and ssh tunnel?
I would like to copy stuff in bulk (reimage disk using dd) with netcat from host A to B via ssh encrypted channel on Linux.
What commands should I type on both ends? Could you please explain what ...