65
Why is copying to USB stick on Linux so damn slow?
(lemmy.world)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Depends on the distro and desktop environment but some will "transfer" files to a software buffer that doesn't actually write the data immediately. Works for limiting unnecessary writes on Flash memory but not USB sticks that are designed to be inserted and removed at short notice.
You can force Linux to commit pending writes using the 'sync' command. Note it won't give you any feedback until the operation is finished (multiple minutes for a thumbdrive writing GBs of data) so append & to your command ('sync &') to start it as its own process so you don't lock the terminal.
You can also watch the progress using the command form this Linux Stack Exchange Q;
https://unix.stackexchange.com/questions/48235/can-i-watch-the-progress-of-a-sync-operation#48245
Side question though, it seems that there are faster options. How come we don't use those in GUI file explorers if they're faster?
As I've already mentioned, sync does absolutely nothing. The copy took so long that the
sync
command exited 4 times while the files were still transfering and were nowhere near finishing. Regarding thewatch -d grep -e Dirty: -e Writeback: /proc/meminfo
command, I did not mention it in this thread but I did try it and yes, there was some almost 900k kB of data in the "Dirty" buffer that went up and down constantly even after I've disabled the caching.