Difference between revisions of "Tar"
Jump to navigation
Jump to search
↑ https://stackoverflow.com/a/18855909
Tags: Mobile web edit, Mobile edit |
|||
Line 10: | Line 10: | ||
-c (--create) | -c (--create) | ||
+ | |||
+ | == With compression == | ||
* <code>tar -Jcvf new_file.tar.[[xz]] /path/folder/to/tar</code> or <code>tar Jcvf new_file.tar.[[xz]] /path/folder/to/tar</code><ref>https://stackoverflow.com/a/18855909</ref> | * <code>tar -Jcvf new_file.tar.[[xz]] /path/folder/to/tar</code> or <code>tar Jcvf new_file.tar.[[xz]] /path/folder/to/tar</code><ref>https://stackoverflow.com/a/18855909</ref> | ||
:<code>-J, --[[xz]]</code> | :<code>-J, --[[xz]]</code> |
Revision as of 10:53, 26 July 2020
https://en.wikipedia.org/wiki/Tar_(computing)
http://man7.org/linux/man-pages/man1/tar.1.html
-c (--create) -remove-files
tar -cf new_file.tar /path/folder/to/tar
tar -cvf new_file.tar /path/folder/to/tar
-c (--create)
With compression
-J, --xz
-j, --bzip2
--lzip
Filter the archive through lzip--lzma
Filter the archive through lzma--lzop
Filter the archive through lzop--no-auto-compress Do not use archive suffix to determine the compression program
-z, --gzip, --gunzip, --ungzip
Filter the archive through gzip-Z, --compress, --uncompress
Filter the archive through compress--zstd Filter the archive through zstd
Compress directory using xz
multithread capabilities
tar c your_directory | xz -T0 -c > your_file_name.tar.xz
Related terms
See also
Advertising: