Last Updated: February 25, 2016
·
4.887K
· dtommasino

Uncompress a CPIO Archive

Create a directory to hold the files:

# mkdir output
# cd output

Move the archive into the newly created directory:

# mv <cpio_archive> output/

Uncompress the archive:

# cpio -idv < <cpio_archive>