1RPM2ARCHIVE(8) RPM2ARCHIVE(8)
2
3
4
6 rpm2archive - Create tar archive from RPM Package Manager (RPM) pack‐
7 age.
8
10 rpm2archive {-n|--nocompression} FILES
11
13 rpm2archive converts the .rpm files specified as arguments to tar ar‐
14 chives on standard out.
15
16 If a '-' argument is given, an rpm stream is read from standard in.
17
18 If standard out is connected to a terminal, the output is written to
19 tar files with a ".tgz" suffix, gzip compressed by default.
20
21 In opposite to rpm2cpio rpm2archive also works with RPM packages con‐
22 taining files greater than 4GB which are not supported by cpio. Unless
23 rpm2cpio rpm2archive needs a working rpm installation which limits its
24 usefulness for some disaster recovery scenarios.
25
27 -n, --nocompression
28 Generate uncompressed tar archive and use ".tar" as postfix of
29 the file name.
30
32 rpm2archive glint-1.0-1.i386.rpm | tar -xvz
33 rpm2archive glint-1.0-1.i386.rpm ; tar -xvz glint-1.0-1.i386.rpm.tgz
34 cat glint-1.0-1.i386.rpm | rpm2archive - | tar -tvz
35
37 rpm2cpio(8), rpm(8)
38
40 Florian Festi <ffesti@redhat.com>
41
42
43
44 27 January 2020 RPM2ARCHIVE(8)