Tar: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
tar --version
{|class='wikitable' style='width:100%;margin:3px 0'
|valign='top' style='width:50%'|
<syntaxhighlight style='margin:3px 0' lang='bash'>
tar --version
which tar
</syntaxhighlight>
 
|valign='top' style='width:50%'|
|}


==Compress==
==Compress==
<syntaxhighlight lang="bash">
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
!scope='col' style='text-align:left'|
Compress
|-
|valign='top'|
<syntaxhighlight style='margin:3px 0' lang='bash'>
cd /etc/nginx
cd /etc/nginx
tar -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled
tar -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled
tar --exclude=default -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled
tar --exclude=default -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled
</syntaxhighlight>
</syntaxhighlight>
|}


==Decompress==
==Decompress==
<syntaxhighlight lang="bash">
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
!scope='col' style='text-align:left'|
Decompress
|-
|valign='top'|
<syntaxhighlight style='margin:3px 0' lang='bash'>
tar -tzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -tzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz -C chorke-nginx-academia-production
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz -C chorke-nginx-academia-production
</syntaxhighlight>
</syntaxhighlight>
|}


==Explanation==
==Explanation==
-c: Create a new archive
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
-x: Extract the archive
!scope='col' style='text-align:left' colspan='2'|
-z: Compress the archive with gzip
Explanation
-v: Verbosely list files processed
|-
-t: List the contents of the archive
|valign='top' style='width:50%'|
-f: Specifies the name of the archive
<syntaxhighlight style='margin:3px 0' lang='text'>
-c: Create a new archive
-x: Extract the archive
-z: Compress the archive with gzip
-v: Verbosely list files processed
-t: List the contents of the archive
-f: Specifies the name of the archive
</syntaxhighlight>
 
|valign='top' style='width:50%'|
|}


==Cheatsheet==
==Cheatsheet==
{|class="wikitable"
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
!scope='col' style='text-align:left' colspan='6'|
Cheatsheet
|-
|-
!scope="col"| Type !!scope="col"| Short !!scope="col"|                                                Compress !!scope="col"|                                  Decompress !!scope="col"| Algorithm !!scope="col"| ⚪
!scope="col"| Type !!scope="col"| Short !!scope="col"|                                                Compress !!scope="col"|                                  Decompress !!scope="col"| Algorithm !!scope="col"| ⚪
Line 36: Line 68:


==DateTime Format==
==DateTime Format==
<syntaxhighlight lang="bash">
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
!scope='col' style='text-align:left' colspan='2'|
DateTime Format
|-
|valign='top' style='width:50%'|
<syntaxhighlight style='margin:3px 0' lang='bash'>
echo      "$(TZ=UTC-8 date +'%Y-%m-%dT%H%M')"
echo      "$(TZ=UTC-8 date +'%Y-%m-%dT%H%M')"
echo            "$(TZ=UTC-8 date +'%FT%H%M')"
echo            "$(TZ=UTC-8 date +'%FT%H%M')"
Line 52: Line 89:
'
'
</syntaxhighlight>
</syntaxhighlight>
|valign='top' style='width:50%'|
|}


==References==
==References==
{|
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
| valign="top" |
!scope='col' style='text-align:left' colspan='3'|
References
|-
|valign='top' style='width:33%'|
* [[7Zip]]
* [[7Zip]]
* [[Zip]]
* [[Zip]]
Line 61: Line 103:
* [[Jar]]
* [[Jar]]


| valign="top" |
|valign='top' style='width:34%'|
 
| valign="top" |


|valign='top' style='width:33%'|
|-
|-
| colspan="3" |
|valign='top'|
----
|-
| valign="top" |
* [[Minikube Systemd]]
* [[Minikube Systemd]]
* [[Alpine/Morefine]]
* [[Alpine/Morefine]]
Line 81: Line 119:
* [[TMux]]
* [[TMux]]


| valign="top" |
|valign='top'|
* [[Chorke Academia Backup]]
* [[Chorke Academia Backup]]
* [https://stackoverflow.com/questions/10555483/ MediaWiki Escape </code>&#124;</code>]
* [https://stackoverflow.com/questions/10555483/ MediaWiki Escape </code>&#124;</code>]
Line 90: Line 128:
* [[AWS CLI]]
* [[AWS CLI]]


| valign="top" |
|valign='top'|


|}
|}

Revision as of 01:10, 16 January 2026

tar --version
which tar

Compress

Compress

cd /etc/nginx
tar -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled
tar --exclude=default -czvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz sites-enabled

Decompress

Decompress

tar -tzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz
tar -xzvf chorke-nginx_academia-production-D20240628-T2023-ZP0800.tar.gz -C chorke-nginx-academia-production

Explanation

Explanation

-c: Create a new archive
-x: Extract the archive
-z: Compress the archive with gzip
-v: Verbosely list files processed
-t: List the contents of the archive
-f: Specifies the name of the archive

Cheatsheet

Cheatsheet

Type Short Compress Decompress Algorithm
tar.gz -z time tar -czvf nginx.2024-06-30T1519.tar.gz  nginx time tar -xzvf nginx.2024-06-30T1519.tar.gz DEFLATE=LZ77+Huffman 🟢
tar.xz -J time tar -cJvf nginx.2024-06-30T1519.tar.xz  nginx time tar -xJvf nginx.2024-06-30T1519.tar.xz LZMA2 🟠
tar.bz2 -j time tar -cjvf nginx.2024-06-30T1519.tar.bz2 nginx time tar -xjvf nginx.2024-06-30T1519.tar.bz2 BZIP2 🟡

DateTime Format

DateTime Format

echo      "$(TZ=UTC-8 date +'%Y-%m-%dT%H%M')"
echo            "$(TZ=UTC-8 date +'%FT%H%M')"
BKP_DATE_N_TIME="$(TZ=UTC-8 date +'%FT%H%M')"
:'
2025-10-10T1010
├─ 2025-10-21
│  ├─ 2025 « %Y
│  ├─   10 « %m
│  └─   10 « %d
└─ T1010
   ├─    T « Time
   ├─   10 « %H
   └─   10 « %M
'

References

References