Speeding up pacman Syu with parallel processing

1 min

language: ja bn en es hi pt ru zh-cn zh-tw

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.

Related Posts