Outils pour utilisateurs

Outils du site


tech:clone_multi_disques_dd_tee

Clone multi disques dd tee

Voir aussi :

Source : http://superuser.com/questions/145516/cloning-single-disk-drive-to-multiple-drives-simultaneously

cat drive.image |tee >(dd of=/dev/sda) >(dd of=/dev/sdb) >(dd of=/dev/sdc) |dd of=/dev/sdd
cat drive.image |tee >(dd of=/dev/sda) >(dd of=/dev/sdb) >(dd of=/dev/sdc) >(dd of=/dev/sdd) > /dev/null

Avec barre de progression

# sudo apt-get install pv
pv drive.image |tee >(dd of=/dev/sda) >(dd of=/dev/sdb) >(dd of=/dev/sdc) |dd of=/dev/sdd
tech/clone_multi_disques_dd_tee.txt · Dernière modification : de 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki