Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
74 views

using rsync/cpio to backup 28TB filesystem

I need your help in finding a best tools/command to backup a huge(140k directories= 24TB) filesystem. I used cpio to copy 80% but my system is out of memory i was forced to kill cpio half way. Our ...
0
votes
0answers
63 views

Cloning xfs filesystem using cpio?

I need your help in cloning 28TB xfs filesystem I used the following script: /backuptacs.sh >> /backuptacs.log And the script is: #!/bin/ksh echo "++++++++++++++++ Start Date is ...
4
votes
3answers
545 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
237 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 ...
5
votes
3answers
4k 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
201 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
2k 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?