Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
copy files from one disk to two other disks,at the same time
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
SarahS93
l33t
l33t


Joined: 21 Nov 2013
Posts: 693

PostPosted: Sat Oct 08, 2016 8:34 pm    Post subject: copy files from one disk to two other disks,at the same time Reply with quote

There are 3 HDDs, all with ext4.
On HDD1 i have many files, some of them i will copy to HDD2 and HDD3.
Is there a way to do that with one copy-command?
So that only 1 time read from HDD1 and write the data to HDD2 and HDD3 at the same time?

I try this in two terminal windows with two midnight commanders, it works for a moment.
But after a few minutes comes problems.... HDD2 is a litle bit slower than HDD3.
In a machine with 16GB of Memeory does it works so for a moment, but by copying files they are have a size of a few hundrets of GB it will not work.
Back to top
View user's profile Send private message
Cyker
Veteran
Veteran


Joined: 15 Jun 2006
Posts: 1746

PostPosted: Sat Oct 08, 2016 10:51 pm    Post subject: Reply with quote

tee is quite a nice utility for this sort of thing; I wanted to do a similar thing, copy from a really slow memory card to two other usb sticks. Found this bit of code at http://stackoverflow.com/questions/195655/how-to-copy-a-file-to-multiple-directories-using-the-gnu-cp-command which might do what you want...


Code:
tar cf - source | tee >( cd dest1 ; tar xf - ) | ( cd dest2 ; tar xf - )


HTH!
Back to top
View user's profile Send private message
Hu
Moderator
Moderator


Joined: 06 Mar 2007
Posts: 21635

PostPosted: Sat Oct 08, 2016 11:43 pm    Post subject: Reply with quote

In general, cd dir ; tar xf - is dangerous, since a failure to cd dir means tar will extract in the previous working directory. It is better to use cd dir && tar xf - or to use tar -C dir -x -f -, both of which will avoid running tar if the cd dir fails.
Back to top
View user's profile Send private message
Cyker
Veteran
Veteran


Joined: 15 Jun 2006
Posts: 1746

PostPosted: Sun Oct 09, 2016 1:44 pm    Post subject: Reply with quote

Oooh, good call!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum