Changes between Version 26 and Version 27 of Documentation


Ignore:
Timestamp:
Jan 4, 2021, 11:17:08 AM (3 years ago)
Author:
Bruno Cornec
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation

    v26 v27  
    334334Then you can either use afio:
    335335{{{
    336 afio -iv /cdrom/archives/13.afio.lzo
     336afio -ZP lzop -iv /cdrom/archives/13.afio.lzo
    337337}}}
    338338or cpio:
     
    342342If you used bzip2 instead of lzo, then unpack with:
    343343{{{
    344 afio -ZP bzip2 -i /cdrom/archives/13.afio.bz2
    345 }}}
     344afio -ZP bzip2 -iv /cdrom/archives/13.afio.bz2
     345}}}
     346Adapt to the compression tool you used at backup time.
     347
     348For big files, you can get them back by using the following command:
     349{{{
     350gzip -cd /cdrom/archives/slice-000000X.*.dat.gz > mybigfile
     351}}}
     352the name of the file generated is the Xth in the /cdrom/archives/biggielist.txt that you can get doing:
     353{{{
     354tail -n+X /cdrom/archives/biggielist.txt | head -n1
     355}}}