You are not logged in.
I frequently copy games from HDD to SSD. And the whole system moves like a slug. Windows opening/closing slow, commands, if entered, are slow to execute.
Is it normal behavior that copying operation receives so much priority that everything else suffers?
I tried it with cp or thunar - same result. I'm not sure, where to go from here to troubleshoot. Both are ext4 partitions. One is on SSD, the other one is a slow 5200rpm HDD.
uname -a:
Linux ArchPC 5.7.2-arch1-1 #1 SMP PREEMPT Wed, 10 Jun 2020 20:36:24 +0000 x86_64 GNU/LinuxCinnamon DE
Not sure what other information I could provide since it's all visual/feeling.
moderator edit -- replaced oversized image with link.
Pasting pictures and code
Last edited by 2ManyDogs (2020-06-15 11:43:34)
Offline
Yes, interleaving a lot of I/O operations is slow. It is not because copying receives some high priority; the interleaving alone does that. On top of that it’s possible that other page are dropped from cache, so they need to be reloaded when you access them, slowing things even more — and that effect persists for some time after copying is over.
A remedy for the first thing may be using invoking cp with ionice -c3 (a command found in core/util-linux). The slowdown will still be noticeable, but perhaps a bit less if cp must wait for all other operations to finish.
Last edited by mpan (2020-06-15 06:35:26)
Offline