The cpio tag has no wiki summary.
4
votes
3answers
264 views
TAR vs CPIO, what is the difference?
I am curious and did a bit of reading but still have questions.
What makes CPIO different than TAR? I was told in another question that tar is for pulling together many files into 1 archive which ...
0
votes
2answers
108 views
extract a few members from tar archive and pipe through network
edit: I want to extra member01 and member02 and directory blah/
tarball_1.tar.gz contains directory test/ with 20 files. I want to extract only member test/member01 and test/member02 and directory ...
4
votes
2answers
3k views
Copy file in GNU/Linux with progress bar and rate limiting
Is there any good tool in GNU/Linux that copy files like cp, but also shows progress and limits speed (and changes limit without interruption) like pv?
Prototype:
find source_directory | cpio -H ...
0
votes
1answer
179 views
Why does cpio say “WARNING! These file names were not selected” when copying a large number of files?
For over 10 years, I've been using this strategy to copy a large number of files between UNIX filesystems:
cd source_directory
find . -depth -print | cpio -pdm /path/to/destination_directory
It ...
2
votes
3answers
1k views
cpio basic extract command, 'tar xzvf' equivalent?
I've received a Unix software distribution as a compressed cpio file. What's the best command to extract the files?