Un second tuyau pour montrer comme je suis super-intelligent et super-modeste et accessoirement un emploi des pipes nommées.
Pour copier sur 3 disques durs en même temps
# cd /mnt
# mkdir new1 new2 new3
# mkfifo /tmp/fifo1 /tmp/fifo2
# ...
# cat /tmp/fifo1 | ( cd new1 ; tar xf - ) &
# cat /tmp/fifo2 | ( cd new2 ; tar xf - ) &
# cd old
# tar cfv - . | tee /tmp/fifo1 | tee /tmp/fifo2 | ( cd ../new3 ; tar xf - )
A faire si les partitions sont sur différents disques.
[^] # Re: HOWTO Hard Disk Upgrade
Posté par morgendorffer . En réponse au message mv hdd1/* hdd2/ ?. Évalué à 2.
Pour copier sur 3 disques durs en même temps
# cd /mnt
# mkdir new1 new2 new3
# mkfifo /tmp/fifo1 /tmp/fifo2
# ...
# cat /tmp/fifo1 | ( cd new1 ; tar xf - ) &
# cat /tmp/fifo2 | ( cd new2 ; tar xf - ) &
# cd old
# tar cfv - . | tee /tmp/fifo1 | tee /tmp/fifo2 | ( cd ../new3 ; tar xf - )
A faire si les partitions sont sur différents disques.
C'est "rigolo" et efficace.