permalink: spells/retrieve-aix-fileset-information
tags:
- OS/AIX
- HowTo
- Application/lslpp
- AttackCycle/ReconnaissanceUse the lslpp command to get information about a given fileset (including installed files).
lslpp -l # List all filesets
lslpp -h $FILESET_NAME # Detailed fileset information
Some versions of AIX can also apparently use the RPM package manager.
permalink: spells/match-files-to-packages-in-red-hat-based-operating-systems
tags:
- HowTo
- OS/Linux/Distros/RedHat
- OS/AIX
- AttackCycle/Reconnaissance
- Application/rpmMatch files to packages in Red Hat-based operating systems
# List all installed packages
#
rpm -qa
# List files in an installed package
#
rpm -ql $PACKAGE_NAME
# List the package that owns a particular file
#
rpm -qf $FULL_PATH_TO_FILE