Hi there, I installed (today) EnOS to another laptop I have, everything was good but after a few hours new updates popped up, I installed them and system is much less responsive as it was before the update. Firefox, Spotify and even Dolphin take a few seconds to open. I also noticed CPU temps increased about 10 degrees.
How to list recently installed packages and the best, originated from updates notifier
? I guess linux
and linux-headers
got updated with this update.
That’s nvidia-free machine with i7 7th gen with plasma
and wayland
.
You can list the recently upgraded packages using :
grep -i "upgraded" /var/log/pacman.log
For recently installed packages:
grep -i "installed" /var/log/pacman.log
If you remember the date you can even do this:
grep -i "2023-06-30" /var/log/pacman.log
This will list everything related to pacman that happened on that particular date
1 Like
Also: paclog --action=upgrade | grep 07-01
will give a list of upgraded packages for 07-01
You could use --action=install
and --action=remove
to list the packages that got installed or removed.
Have a look at paclog --help
for more options to play with.
paclog
is provided by the package pacutils
.
1 Like