What is the fastest way to copy content of DVD to hard disc using Linux

Posted by Ritesh on Stack Overflow See other posts from Stack Overflow or by Ritesh
Published on 2012-06-18T15:12:12Z Indexed on 2012/06/18 15:16 UTC
Read the original article Hit count: 214

Filed under:
|
|

I have gone through some of the links Which talks about fastest way of copying files in windows using FILE_FLAG_NO_BUFFERING and FILE_FLAG_OVERLAPPED . It also talks about how request made for read and write opeartions with BUFFER SIZE as 256KB and 128KB are faster than 1Mb .The link for that is :- Explanation for tiny reads (overlapped, buffered) outperforming large contiguous reads? I am also loking for a Similar method in linux Which allows me to copy the content of my DVD to Hard Disc in a fast Way . So I wanted to know Is there some file operation flags in Linux which would provide me the best result or Which way of Copy in Linux is the best ? My codes are all in c++.

© Stack Overflow or respective owner

Related posts about c++

Related posts about linux