Linux is offering much less copying speed compared to windows.To copy 1GB data in linux it takes much more time compared to windows.So please suggest me to copy directory as effective as windows.I tried using cp,rsync and also changed the file system to ntfs but i did not find any of the above method as good as windows copying speed.
Asked
Active
Viewed 637 times
1 Answers
0
Copying speed heavily depends on underlying file system. Sorther command for copying a directory is this:
cp -a ORIGIN DESTINATION

Antxon
- 1,855
- 15
- 21
-
tried using a option too but still not able to files copying only at 10mb/sec – Kernel Mar 26 '15 at 10:39
-
1Which are the underlying file systems? Are they Linux native filesystems? Take into account that for NTFS file systems, most Linux distributions use FUSE file systems, which is a file system user implementation, and so, slower than a Kernel one. Also, this questions fits better in [Super User](http://superuser.com/) than in Stack Overflow, which is for programming practices. – Antxon Mar 26 '15 at 10:46