diff options
| author | Shipwreckt <me@shipwreckt.co.uk> | 2025-10-31 20:02:14 +0000 |
|---|---|---|
| committer | Shipwreckt <me@shipwreckt.co.uk> | 2025-10-31 20:02:14 +0000 |
| commit | 7a52ddeba2a68388b544f529d2d92104420f77b0 (patch) | |
| tree | 15ddd47457a2cb4a96060747437d36474e4f6b4e /public/archive/linux/TarGZ/index.html | |
| parent | 53d6ae2b5568437afa5e4995580a3fb679b7b91b (diff) | |
Changed from static to 11ty!
Diffstat (limited to 'public/archive/linux/TarGZ/index.html')
| -rw-r--r-- | public/archive/linux/TarGZ/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/public/archive/linux/TarGZ/index.html b/public/archive/linux/TarGZ/index.html new file mode 100644 index 0000000..738c2d5 --- /dev/null +++ b/public/archive/linux/TarGZ/index.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/assets/css/main.css"> + <title>How to tar.gz a directory 📁</title> + </head> + <body> + <article> + <header> + <h1>How to tar.gz a directory 📁</h1> + <p class="post-date">April 13, 2025</p> + </header> + <div class="post-content"> + <hr> + <h2>What you will need 📋</h2> +<ul> +<li>A computer with Linux or BSD 🐧🖥️</li> +<li>The ability to read instructions and to follow them 🧠</li> +</ul> +<hr> +<h2>Why?</h2> +<p>Main reason why you want to tar.gz a directory is because it compresses a directory and all of the data inside of it. It is also good for backing things up too.</p> +<hr> +<h2>The command</h2> +<blockquote> +<p>$ tar -czvf file.tar.gz /Location/Of/Directory</p> +</blockquote> +<hr> +<h2>All done ✅</h2> +<p>Really easily done, only one command and done!</p> + + </div> + </article> + + + + + <footer class="post-footer"> + <a href="/archive/linux" class="back-button">⬅ Back to Linux</a> + </footer> + + </body> +</html> + |
