Just needed to unpack an rpm on my Ubuntu Box so I could send my brother one of the chkconfig init.d scripts.
To do it required the following:
sudo apt-get install rpm # need this for rpm2cpio utility
rpm2cpio therpmyouwantounpack.rpm | cpio -idmv
0 Comments