Parallel File Copy
Posted
by Jon
on Server Fault
See other posts from Server Fault
or by Jon
Published on 2010-06-18T01:08:29Z
Indexed on
2010/06/18
1:13 UTC
Read the original article
Hit count: 423
I have a list of files I need to copy on a Linux system - each file ranges from 10 to 100GB in size.
I only want to copy to the local filesystem. Is there a way to do this in parallel - with multiple processes each responsible for copying a file - in a simple manner?
I can easily write a multithreaded program to do this, but I'm interested in finding out if there's a low level Linux method for doing this.
© Server Fault or respective owner