Revision [29135]
This is an old revision of tar made by coolpup on 2013-10-12 12:42:56.
tar
file archiving- software package tar
- verify the installed version via the command-line interface:
tar --version
- filename extension: .tar
- internet media type: application/x-tar
- container types: gzip, bzip2, lzip, lzma, xz, lzop, compress
- listing (viewing) the contents of a .txz or .tar.xz file without extracting:
tar tf archivename.tar.xz
- extracting tar archives (tarballs):
tar xfv file.EXTENSION
- creating a tar archive (tarball) without compression:
tar cfv archivename.tar [dir...]
- creating a tar archive (tarball) with xz compression:
tar cfJv archivename.txz [dir...]
- creating a software package tar archive (tarball) with xz compression:
cd packagename
tar cfJv ../packagename.txz *
Categories
CategoryArchivingCategorySoftwareTopPackages
CategorySoftware