I finally divorced my self from Pamac

@fbodymechanic Your lifelong vendetta against Pamac (although noble and just I’m sure) still doesn’t quite answer my question; I’m not trying to burn or toss anything off any balcony, I don’t even have a balcony! But I thank you kindly nonetheless for your response :wink:

@tbg No, I saw that too and used the command. But the issue with that command is it shows everything under the sun; there’s “too much fluff” for the task I’m talking about. That command shows not only installed/removed/upgraded packages, but it also shows anytime a transaction was stared, any possible warning messages, it displays [ALPM-SCRIPTLET] information which I don’t need to see at all (aka all those messages you see after a kernel upgrade just to name one of them), and it displays [PACMAN] information, which shows synchronizing package lists every time you ran it, which I don’t need to see that constantly at all either. The Pamac approach is simple, straight to the point, and it can’t really get any easier than that I don’t think. The only option I can think of if there was an alias I could create that essentially runs whatever command Pamac transaction history runs and then I’d be more or less set to use that instead I believe.

alias paclog='cat /var/log/pacman.log'
alias gpaclog='cat /var/log/pacman.log | grep -a'

Show everything, or search for specific packages or actions.

Don’t need no schtinking Pamac for that.

:smiley:

2 Likes

It is easy enough to have grep display the results from multiple string searches simultaneously. For instance:

grep 'upgraded\|installed\|removed' /var/log/pacman.log

should do what you’re asking - alias that as appropriate. Or a variation as you choose, of course :grin:

You could also pipe it through sort (if you want them grouped) or through less (if you want it paginated) - or into a (temporary?) text file for browsing as example of enhancements. Enjoy!

6 Likes

Wait!

$ pacman -Qo paclog
/usr/bin/paclog is owned by pacutils 0.11.1-1

$ paclog --help
paclog - filter pacman log entries
usage: paclog [options] [filters]

options:
   --config=<path>     set an alternate configuration file
   --root=<path>       set an alternate installation root
   --sysroot=<path>    set an alternate installation system root
   --debug             enable extra debugging messages
   --logfile=<path>    set an alternate log file
   --[no-]color        color output
   --pkglist           list installed packages (EXPERIMENTAL)

filters:
   --action=<action>   show <action> entries
   --after=<date>      show entries after <date>
   --before=<date>     show entries before <date>
   --caller=<name>     show entries from program <name>
   --commandline       show command line entries
   --grep=<regex>      show entries matching <regex>
   --package=<pkg>     show entries affecting <pkg>
   --warnings          show notes/warnings/errors
6 Likes
grep 'upgraded\|installed\|removed' /var/log/pacman.log

A nitpick is that lines such as

warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.new

are included in the output because of “installed”.

To fix that and to flesh out the rest of freebird’s suggestion:

grep -E "(\[ALPM\]\ upgraded|\[ALPM\]\ installed|\[ALPM\]\ removed)" /var/log/pacman.log | sort -k2 > /tmp/search && vim /tmp/search

will exclude warnings, group the entries by the third column using sort -k2, write the output to /tmp/search and open /tmp/search in vim.

(At some point, one needs functions (or scripts) rather than aliases.)

2 Likes

Well, well, well … you learn something every day!

$ ql pacutils | grep bin
pacutils /usr/bin/paccapability
pacutils /usr/bin/paccheck
pacutils /usr/bin/pacconf
pacutils /usr/bin/pacfile
pacutils /usr/bin/pacinfo
pacutils /usr/bin/pacini
pacutils /usr/bin/pacinstall
pacutils /usr/bin/paclock
pacutils /usr/bin/paclog
pacutils /usr/bin/pacremove
pacutils /usr/bin/pacrepairdb
pacutils /usr/bin/pacrepairfile
pacutils /usr/bin/pacreport
pacutils /usr/bin/pacsift
pacutils /usr/bin/pacsync
pacutils /usr/bin/pactrans

I also have a paclock alias!
:grin:

Name            : pacutils
...
Required By     : rebuild-detector  trizen

Inadvertant dependency install, for both.

alias cr='checkrebuild'
2 Likes

I don’t know, maybe it’s just me, but I have always had terrible experiences with GUI installers in Linux, not just pamac, but the fedora gui installer, the ubuntu gui installer, the linux mint installer, they all suck. It is so much easier to use the command line, and you get the added bonus of feeling leet once you get used to it

paclog --action=install --action=remove --action=upgrade 

It is even nicely color coded.

10 Likes

The one thing you can count on around here - that there will be more than one way to defur the feline!

Now - do we have a use for a GUI (yad-based) for selective paclog (or alternatives) calls?

This is the best command for this action by far, thank you very much :heart_eyes:

1 Like

I think when I used manjaro years ago I installed pamac using octopi. Is that still available / popular?

Are you asking if using octopi to install pamac is popular? I would say probably not. :wink:

That being said, yes, octopi is still available in the AUR. It certainly isn’t as popular as it used to be but I wouldn’t let that influence your decision either way.

Sorry I didn’t phrase it well, I meant is Octopi still available. I asked because no one seems to mention it. I’m personally sticking with pacman.

1 Like

I think Garuda has octopi installed out of the box if you have one of the KDE versions. I never use it on my computer that has garuda on it, but I believe it is there nonetheless.

1 Like

I think I saw Little Miss Pamac once, standing on the corner, eating her curds and whey. :rofl:

1 Like

So - the easy answer (for now) is to insert some variation of the following in your .bashrc:

alias logrem='paclog --action=remove | less'
alias logins='paclog --action=install | less'
alias logupd='paclog --action=upgrade | less'

Of course, sorting could be inserted into those, or whatever you want - but there is simple…

EDIT:
Optional colourization version:

alias logrem='paclog --color --action=remove | less -r'
alias logins='paclog --color --action=install | less -r'
alias logupd='paclog --color --action=upgrade | less -r'

Keep the colour, and get pages too! :grin:

6 Likes

yay is really all you need to search for packages e.g:

yay pkgname

I just use these aliases in ~/.bashrc:

alias update='sudo pacman -Sy'
alias upgrade='sudo pacman -Syu'
# update AUR pkgs
alias apdate='yay -Syu --aur --cleanafter'

The following is useful for finding what package provides a specific file:

# usage: provides filename
alias provides='sudo pacman -Fy && pacman -F'`

other useful /etc/pacman.conf settings:

# Misc options
Color
ILoveCandy
ParallelDownloads = 5
4 Likes

One alternative I forgot (!) to mention - a little goody that lives in the EndeavourOS repo - pahis.

This can list pacman log entries by any category, or by a package name, or all etc etc. Actually - most things you might need are covered in there somewhere :grin:

1 Like

noob here
what’s wrong with pamac?
i use pamac, octopi

If that isn’t enough, go to search located to the left of your avatar, type in “pamac” and you will see a list of 50 Topics.

Pudge

1 Like