Hi, I use cpio to backup nfs server:find . -depth | cpio -o -v --format=newc | ssh User@BackupServer " /bin/cat > /PathBackup/file.cpio "
The backup directory on backup server has xfs file system
When I check the integrity of cpio file:
cat file.cpio |cpio -itv
, I've error messages:
cpio: warning: skipped 4096 bytes of junk
....
Backup files are larger than Giga
.
What 's the problem cpio or xfs? does anybody know a solution?
Patoch