Tar zonder compressie :
Inpakken :
tar cfv bestand.tar bestandsmap
Uitpakken :
tar xvf bestand.tar
Tar met gzip compressie
Inpakken :
tar cfvz bestand.tar.gz bestandsmap
Uitpakken :
tar xvfz bestand.tar.gz
Tar met bzip2 compressie
Inpakken :
tar cfvj bestand.tar.bz2 bestandsmap
Uitpakken :
tar xvfj bestand.tar.bz2
Parameters :
- -c: create a new archive;
- -f: use archive file;
- -v: verbosely list files processed;
- -x: extract files from an archive;
- -z: filter the archive through gzip;
- -j: filter archive through bzip2.
Categorieën
UNIX