summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShipwreckt <me@shipwreckt.co.uk>2025-04-13 12:07:30 +0100
committerShipwreckt <me@shipwreckt.co.uk>2025-04-13 12:07:30 +0100
commit70ab596e55c69a805f3a9e05350de1bf9d8af5ef (patch)
tree09309e762fbf666f5d1a5dc2c96bda3eaff53ee3
parent273949e66c0ee4fa2e0515258876ca279e42f4ab (diff)
Tar.Gz update!
-rw-r--r--public/articals/linux/tools/TarGz.html52
-rw-r--r--public/articals/linuxlist.html1
2 files changed, 53 insertions, 0 deletions
diff --git a/public/articals/linux/tools/TarGz.html b/public/articals/linux/tools/TarGz.html
new file mode 100644
index 0000000..d84c883
--- /dev/null
+++ b/public/articals/linux/tools/TarGz.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html lang="en-GB">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="author" content="Shipwreckt">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>tar.gz a directory 📁</title>
+ <link rel="stylesheet" href="../../../styles.css">
+ <link rel="icon" href="../../../Images/favi.png" type="image/x-icon">
+ </head>
+ <body>
+ <header>
+ <nav>
+ <ul>
+ <li><a href="../../../index.html">Home</a></li>
+ <li><a href="../../../links.html">Links</a></li>
+ <li><a href="../../../projects.html">Projects</a></li>
+ <li><a href="../../../contact.html">Contact</a></li>
+ </ul>
+ </nav>
+ </header>
+ <main>
+ <h1>How to tar.gz a directory 📁</h1>
+ <h3>Date: 13-04-2025</h3>
+ <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>
+ <div class=code-box>
+ <p>$ tar -czvf file.tar.gz /Location/Of/Directory</p>
+ </div><hr>
+
+
+ <h2>All done ✅</h2>
+ <p>Really easily done, only one command and done!</p>
+
+ <center>
+ <hr>
+ <pre text-align=center> <a href="../../linuxlist.html">Back 🚪</a>
+ </main>
+</body>
+</html>
+
diff --git a/public/articals/linuxlist.html b/public/articals/linuxlist.html
index 30ff635..5fcbd82 100644
--- a/public/articals/linuxlist.html
+++ b/public/articals/linuxlist.html
@@ -51,6 +51,7 @@
<h2>Tools</h2>
<ul>
<li>25-08-2024 - <a href="linux/tools/Ventoy.html">Ventoy install with Linux 🐧🔌</a></li>
+ <li>13-04-2025 - <a href="linux/tools/TarGz.html">How to tar.gz a directory 📁</a></li>
</ul>
</main>
</body>