To make sure pacman produces a colourful output in the terminal. Open up /etc/pacman.conf
in your editor of choice, with sudo
/doas
privileges. Then simply delete the # before Color
, under the # Misc options
sub-heading.
# Misc options
#UseSyslog
- #Color
+ Color
#TotalDownload
CheckSpace
#VerbosePkgLists
Now save and exit, and the next time you update your system packages, pacman will use the same colour scheme as your terminal/tty.
With the release of Pacman v6.0.0, comes the ability to have parallel package downloads. Meaning all of your small system packages can be downloaded, all whilst getting the latest Linux kernel.
Because of reasons beyond the scope of this article (read: I don’t feel like writing about it), this shouldn’t throttle the speed of each download stream. As the Arch repository mirrors you’re getting your package updates from, probably aren’t sending packets of data to you as fast as your network connection can handle. Making parallel downloads only seem like a good thing. With resulting average install times that are less than just downloading package updates sequentially.
To add this latest feature, you will have to make the following edit, just like with the Color
option mentioned above.
# Misc options
#UseSyslog
Color
#TotalDownload
CheckSpace
#VerbosePkgLists
+ ParallelDownloads = 5
If your install of Arch Linux comes after the release of Pacman v6.0.0, you should find that ParallelDownloads
option is already there. And just needs to be ‘un-commented’.
The number you assign to ParallelDownloads
denotes how many download streams you want to enable. By default, this value is set equal to 5, but can be changed depending on your system’s hardware. A rule of thumb being adopted seems to be to match the number of threads on your CPU. But, you may find that testing above this may be beneficial, without resulting in performance drops.