This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:rpm [2008/09/21 00:11] rlunaro created |
linux:rpm [2014/12/24 10:42] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Notas sobre rpm ====== | ====== Notas sobre rpm ====== | ||
+ | |||
+ | ===== Creación de rpm's ===== | ||
+ | |||
+ | * [[CrearRPMs|Creación de rpm' | ||
+ | |||
===== ¿Qué rpm instala qué fichero?? ===== | ===== ¿Qué rpm instala qué fichero?? ===== | ||
Line 7: | 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:// | ||