[2025-jun-17] The SlackDocs mailing lists at https://lists.alienbase.nl/mailman/listinfo have been retired. No one has been using these lists for years and it's time to say goodbye. The list archives remain available at https://scalzi.slackware.nl/mailman/listinfo/slackdocs
[2025-jun-17] The SlackDocs Wiki has moved to a new server, in order to make it more performant.
Differences
This shows you the differences between two versions of the page.
| howtos:slackware_admin:querying_installed_packages [2012/09/25 04:17 (UTC)] – moved from the general howtos namespace mfillpot | howtos:slackware_admin:querying_installed_packages [2020/06/16 11:29 (UTC)] (current) – [Querying Installed Packages] unixbhaskar | ||
|---|---|---|---|
| Line 52: | Line 52: | ||
| cairomm-1.9.8-x86_64-1_SBo | cairomm-1.9.8-x86_64-1_SBo | ||
| pycairo-1.8.10-x86_64-2</ | pycairo-1.8.10-x86_64-2</ | ||
| + | |||
| + | ===Another way to find out the installed packages=== | ||
| + | <file bash installed_pkgs_info> | ||
| + | |||
| + | #!/bin/sh | ||
| + | #Save this script as " | ||
| + | |||
| + | pkgdir="/ | ||
| + | |||
| + | printf " | ||
| + | |||
| + | cd $pkgdir | ||
| + | |||
| + | for i in *;do slackpkg info $i | grep " | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | And the output should look like this : | ||
| + | |||
| + | root@Slackware_16: | ||
| + | |||
| + | |||
| + | | ||
| + | |||
| + | PACKAGE NAME: ConsoleKit2-1.2.1-x86_64-4.txz | ||
| + | PACKAGE NAME: Cython-0.29.20-x86_64-1.txz | ||
| + | PACKAGE NAME: GConf-3.2.6-x86_64-4.txz | ||
| + | PACKAGE NAME: LibRaw-0.18.12-x86_64-1.txz | ||
| + | PACKAGE NAME: M2Crypto-0.35.2-x86_64-5.txz | ||
| + | PACKAGE NAME: MPlayer-20200103-x86_64-2.txz | ||
| + | PACKAGE NAME: MPlayer-20200103-x86_64-2_alsa.txz | ||
| + | |||
| + | ..snipped output for brevity! | ||
| + | |||
| + | </ | ||
| + | |||