This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:rpm [2008/10/04 21:01] rlunaro |
linux:rpm [2014/12/24 10:42] (current) |
||
---|---|---|---|
Line 12: | Line 12: | ||
rpmquery --file Nombre_de_fichero | rpmquery --file Nombre_de_fichero | ||
</ | </ | ||
+ | |||
+ | ===== Como descomprimir un rpm ===== | ||
+ | |||
+ | El contenido de un RPM es un stream cpio(1), para obtenerlo usa | ||
+ | rpm2cpio(8) (instalado junto con rpm), que simplemente limpia headers. | ||
+ | |||
+ | < | ||
+ | |||
+ | $ rpm2cpio foobar.rpm | cpio -idmv | ||
+ | |||
+ | </ | ||
+ | |||
+ | [[http:// | ||