You are not logged in.
It is often that when you install a package for the first time, pacman displays a readme on the package. This is usually setup information etc.
Is there some way to display this again after a package has been installed?
Offline
Many packages have post-install/upgrade messages. You can read them in /var/log/pacman.log if you missed them the first time.
edit: typo.
Last edited by peart (2008-12-16 06:46:03)
Offline
Thanks, that helps. It'd be nice if there was some way in the pacman queries, like pacman -Qm (m for messages) that would display the messages for whatever package.
Offline
I think the messages are in <packagename>.install which is used when building the <package>.pkg.tar.gz file. AFAIK, it tells pacman what to do after installing a package (for example, show some text). If you want to read the post install message for a certain package, you could look for the package in abs, where you can find the <packagename>.install file.
For lack of better words: chair, never, toothbrush, really. Ohw, and fish!
Offline
I think that info is also kept in the pacman DB.
[git] | [AURpkgs] | [arch-games]
Offline
The install script is copied to /var/lib/pacman/local/<pkgname>-<pkgver>-<pkgrel>/install. This provides all the information shown at install time, as well as the echos, cats, and other commands used to put the information on the screen, and any install-time processes e.g. depmod etc. Personally, I prefer looking at the log.
Offline
A quick log query for todays date:
cat /var/log/pacman.log | grep `date +%Y-%m-%d`Offline
The install script is copied to /var/lib/pacman/local/<pkgname>-<pkgver>-<pkgrel>/install.
Ah nice, I suspected there'd be something like that:P
For lack of better words: chair, never, toothbrush, really. Ohw, and fish!
Offline