You are not logged in.
Hey all, every time I install AUR packages like Thunderbird, the build process pushes my CPU usage up to around 90% to 100%. I'm on an Intel 14900K, so I’m just wondering — is that normal for AUR builds, or could something in my Arch setup be causing it?
I'm using command:
yay -Syuwhen trying to install the package.
here's screnshoot link of the system load when compile the pkg
https://media.discordapp.net/attachment … height=842
Last edited by Asakusa (2025-07-08 06:09:08)
Offline
Have a look here and see if you can get some pointers: https://wiki.archlinux.org/index.php/ma … ompression
To skip compression when building packages from the Arch User Repository (AUR), you can modify the PKGEXT variable in makepkg.conf. By setting PKGEXT to .pkg.tar instead of the default .pkg.tar.zst (or similar), you can prevent compression. This can be done either by editing the system-wide makepkg.conf or by creating a user-specific configuration file to override it.
Your best best is to scour the Arch Wiki and most of the time you will find your answers there. Cheers
Last edited by johnpiers (2025-07-08 05:07:02)
Offline
Your screenshot does not show which process is using the CPU but you're compiling a very large application from source, so of course, it's using a lot of CPU.
Offline
Your screenshot does not show which process is using the CPU but you're compiling a very large application from source, so of course, it's using a lot of CPU.
Yeah, I think the screenshot's a bit off. But high resource usage during compilation is normal, right?
Offline
Have a look here and see if you can get some pointers: https://wiki.archlinux.org/index.php/ma … ompression
To skip compression when building packages from the Arch User Repository (AUR), you can modify the PKGEXT variable in makepkg.conf. By setting PKGEXT to .pkg.tar instead of the default .pkg.tar.zst (or similar), you can prevent compression. This can be done either by editing the system-wide makepkg.conf or by creating a user-specific configuration file to override it.
Your best best is to scour the Arch Wiki and most of the time you will find your answers there. Cheers
I'll read it, thanks for the link. I guess I'll mark this thread as solved. Thanks, man
Offline
You can limit the amount of cores used, at the expense of longer build times.
https://wiki.archlinux.org/title/Makepk … ompilation
Offline