help: failed to decompress rpm files with rpm2cpio&cpio #2628
-
I want to decompress the kernel-5.14.0-284.18.1.el9_2.aarch64.rpm with the following. rpm2cpio kernel-5.14.0-284.18.1.el9_2.aarch64.rpm | cpio -div
1 block Then I ran What's the correct command to decompress the rpm file ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think the kernel-5.14.0-284.18.1.el9_2.aarch64.rpm contains no file. |
Beta Was this translation helpful? Give feedback.
-
rpm2cpio doesn't check for any rpmlib() dependencies the package may have, try 'rpm -i' on the src.rpm for that. Most likely the kernel package you're looking at is compressed with an algorithm (zstd) that the rpm you're using doesn't support. |
Beta Was this translation helpful? Give feedback.
rpm2cpio doesn't check for any rpmlib() dependencies the package may have, try 'rpm -i' on the src.rpm for that. Most likely the kernel package you're looking at is compressed with an algorithm (zstd) that the rpm you're using doesn't support.