website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

commit 811da5a2fe327ddeee7f483c055bd293fd9a8750
parent ffc186103f56a0ba163296ae52aa7fdbf17e2dad
Author: Shipwreckt <shipwreckt@mailfence.com>
Date:   Thu, 25 Jul 2024 11:57:49 +0000

Updated the README.md and added a section about arch linux

Diffstat:
MREADME.md | 20+++++++++++++-------
Dpublic/articals/1CleaningArchLinux | 56--------------------------------------------------------
Apublic/articals/arch/1CleaningArchLinux | 54++++++++++++++++++++++++++++++++++++++++++++++++++++++
Apublic/articals/archlist | 32++++++++++++++++++++++++++++++++
Mpublic/index.html | 4++--
5 files changed, 101 insertions(+), 65 deletions(-)

diff --git a/README.md b/README.md @@ -1,9 +1,15 @@ -This is my personal website I do hope you like it! -The reason why I have made this website is because I love the idea of a place that I own and -control, I can just add whatever I want to this and it is awesome ! +## **Shipwreckt.co.uk Website Repository** -Some day I will get an email server working :0 +Welcome to my personal website repository! This project is licensed under the GNU Affero General Public License v3.0, giving you the freedom to copy, modify, and distribute it. Additionally, you are not required to credit this website as your template if you choose to use it. + +### License + +This project is licensed under the GNU Affero General Public License v3.0. You can view the full license [here](https://www.gnu.org/licenses/agpl-3.0.html). A copy of the license should be included in this repository. + +### How to Clone + +To clone this repository, use the following command: + +```bash +git clone https://gitlab.com/Shipwreckt/website -There is somethings still to do till I can fully say it is out but I am working my hardest with the -time I have so don't judge so fast! -link to the website: https://shipwreckt.co.uk diff --git a/public/articals/1CleaningArchLinux b/public/articals/1CleaningArchLinux @@ -1,56 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Cleaning Arch Linux</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 class="description"> - <h1>How to Clean Arch Linux</h1> - <h3>Date: 21:7:2024</h3> - <hr> - <p>In this artical I will be telling you how to clean up your <a href="https://archlinux.org">Arch Linux system</a> in the same way I do so.</p> - <hr> - <h2>Package Cache</h2> - <p>The first thing you want to do is clean the Pacman cache, as Pacman does not automatically clean it. This is because Pacman retains the cache in case you need to downgrade a package or reinstall it after uninstalling. To clean the cache, use the following commands:</p> - <div class="code-box"> - <p>sudo pacman -Sc # Remove packages from cache not installed</p> - <p>sudo pacman -Scc # Remove packages from cache both installed and not installed</p> - </div> - <p>Some people like to automate this task of cleaning the cache with <a href="https://wiki.archlinux.org/title/Pacman#Cleaning_the_package_cache">paccache</a>, but personally I would not because it is something that takes around five minutes max to do. However, it is your choice if you want to do so to avoid the trouble of doing it manually. Regardless of whether you choose to do this manually or automatically, I suggest cleaning the cache monthly. -</p> - <hr> - <h2>Removing Orphan Packages</h2> - <p>Orphan packages are those installed as dependencies for other software but are no longer needed. For example, when you install <a href="https://librewolf.net/">LibreWolf</a>, it downloads a package called librewolf-debug as a dependency. Once the installation is complete, librewolf-debug becomes an orphan package because it is no longer used by LibreWolf.</p> - - <div class="code-box"> - <p>sudo pacman -Qtdq # Identify orphan packages</p> - <p>sudo pacman -Rns $(pacman -Qtdq) # Uninstall orphan packages</p> - </div> - <p>I suggest uninstalling Orphan packages every month or so, just like cleaning the Pacman cache.</p> - <hr> - <h2>Cache</h2> - <p>Sometimes you want to clean out the ~/.cache directory, as it can accumulate a large number of files from various programs on your system. The cache directory contains temporary files used by different applications to speed up their processes. In general, it is safe to delete all items in this directory, but be cautious if you have specific applications with unusual caching mechanisms. To clean the cache directory run the following command:</p> - <div class="code-box"> - <p>rm -rf ~/.cache/* # Clear the cache directory</p> - </div> - <hr> - <p>That is more for now, I hope this artical has helped you clean your system.</p> - - </main> -</body> -</html> - diff --git a/public/articals/arch/1CleaningArchLinux b/public/articals/arch/1CleaningArchLinux @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Cleaning Arch Linux</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 class="description"> + <h1>How to Clean Arch Linux</h1> + <h3>Date: 21:7:2024</h3> + <p>In this artical I will be telling you how to clean up your <a href="https://archlinux.org">Arch Linux system</a> in the same way I do so.</p> + <hr> + <h2>Package Cache</h2> + <p>The first thing you want to do is clean the Pacman cache, as Pacman does not automatically clean it. This is because Pacman retains the cache in case you need to downgrade a package or reinstall it after uninstalling. To clean the cache, use the following commands:</p> + <div class="code-box"> + <p>sudo pacman -Sc # Remove packages from cache not installed</p> + <p>sudo pacman -Scc # Remove packages from cache both installed and not installed</p> + </div> + <p>Some people like to automate this task of cleaning the cache with <a href="https://wiki.archlinux.org/title/Pacman#Cleaning_the_package_cache">paccache</a>, but personally I would not because it is something that takes around five minutes max to do. However, it is your choice if you want to do so to avoid the trouble of doing it manually. Regardless of whether you choose to do this manually or automatically, I suggest cleaning the cache monthly. +</p> + <hr> + <h2>Removing Orphan Packages</h2> + <p>Orphan packages are those installed as dependencies for other software but are no longer needed. For example, when you install <a href="https://librewolf.net/">LibreWolf</a>, it downloads a package called librewolf-debug as a dependency. Once the installation is complete, librewolf-debug becomes an orphan package because it is no longer used by LibreWolf.</p> + + <div class="code-box"> + <p>sudo pacman -Qtdq # Identify orphan packages</p> + <p>sudo pacman -Rns $(pacman -Qtdq) # Uninstall orphan packages</p> + </div> + <p>I suggest uninstalling Orphan packages every month or so, just like cleaning the Pacman cache.</p> + <hr> + <h2>Cache</h2> + <p>Sometimes you want to clean out the ~/.cache directory, as it can accumulate a large number of files from various programs on your system. The cache directory contains temporary files used by different applications to speed up their processes. In general, it is safe to delete all items in this directory, but be cautious if you have specific applications with unusual caching mechanisms. To clean the cache directory run the following command:</p> + <div class="code-box"> + <p>rm -rf ~/.cache/* # Clear the cache directory</p> + </div> + <hr> + <p>That is more for now, I hope this artical has helped you clean your system.</p> + </main> +</body> +</html> + diff --git a/public/articals/archlist b/public/articals/archlist @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Arch Linux index</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 class="description"> + <h1>Arch Linux articles</h1> + <p>Due to the fact I plan to write more articles about <a href""https://archlinux.org>Arch Linux</a> I have decided to make an index to preper for the future when I do write more.</p> + <section class="posts"> + <h2>Tutorials</h2> + <ul> + <li>21-07-2024 - <a href="arch/1CleaningArchLinux">How to clean Arch Linux</a></li> + </ul> + </main> +</body> +</html> + diff --git a/public/index.html b/public/index.html @@ -35,8 +35,8 @@ <section class="posts"> <h2>Articles</h2> <ul> - <li>21-07-2024 - <a href="articals/1CleaningArchLinux">How to clean Arch Linux</a></li> - <li>30-05-2024 - <a href="articals/0How_To_Stay_Safe_Online">How to stay safe online</a></li> + <li>25-07-2024 - <a href="articals/archlist">Articles about Arch Linux</a></li> + <li>30-05-2024 - <a href="articals/0How_To_Stay_Safe_Online">How to stay safe online</a></li> </ul> </section> </main>