Extracting RPM Files
· One min read
To extract the contents of a RPM file, you need the rpm2cpio and the cpio tools. Use them this way:
rpm2cpio name_of_package.rpm | cpio -tv
This will extract the contents of the RPM file.
To extract the contents of a RPM file, you need the rpm2cpio and the cpio tools. Use them this way:
rpm2cpio name_of_package.rpm | cpio -tv
This will extract the contents of the RPM file.