Speeding up pacman Syu with parallel processing
Hello, it's me, the incompetent one.
I regularly run `pacman -Syu`, but it's slow when there are many repositories to update.
So, I looked into whether downloads could be parallel processed, and it seems they can.
sudo vim /etc/pacman.conf
/Paralle
If you search for it, you'll find:
ParallelDownloads = 10
Since there is a string like that, you just need to uncomment it. The example above is already after the setting change.
That's all.