How to extract files from RPM package in linux
I wanted to get a file from an RPM package. So this is what I did.
rpm2cpio therpmfile.rpm | cpio -idmv
This will extract the files from the rpm package to the current directory you have.
I wanted to get a file from an RPM package. So this is what I did.
rpm2cpio therpmfile.rpm | cpio -idmv
This will extract the files from the rpm package to the current directory you have.