From 811da5a2fe327ddeee7f483c055bd293fd9a8750 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Thu, 25 Jul 2024 11:57:49 +0000 Subject: Updated the README.md and added a section about arch linux --- README.md | 20 +++++++----- public/articals/1CleaningArchLinux | 56 --------------------------------- public/articals/arch/1CleaningArchLinux | 54 +++++++++++++++++++++++++++++++ public/articals/archlist | 32 +++++++++++++++++++ public/index.html | 4 +-- 5 files changed, 101 insertions(+), 65 deletions(-) delete mode 100644 public/articals/1CleaningArchLinux create mode 100644 public/articals/arch/1CleaningArchLinux create mode 100644 public/articals/archlist diff --git a/README.md b/README.md index e5d6626..6474ef4 100644 --- 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 deleted file mode 100644 index af271ca..0000000 --- a/public/articals/1CleaningArchLinux +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - Cleaning Arch Linux - - - - -
- -
-
-

How to Clean Arch Linux

-

Date: 21:7:2024

-
-

In this artical I will be telling you how to clean up your Arch Linux system in the same way I do so.

-
-

Package Cache

-

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:

-
-

sudo pacman -Sc # Remove packages from cache not installed

-

sudo pacman -Scc # Remove packages from cache both installed and not installed

-
-

Some people like to automate this task of cleaning the cache with paccache, 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. -

-
-

Removing Orphan Packages

-

Orphan packages are those installed as dependencies for other software but are no longer needed. For example, when you install LibreWolf, 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.

- -
-

sudo pacman -Qtdq # Identify orphan packages

-

sudo pacman -Rns $(pacman -Qtdq) # Uninstall orphan packages

-
-

I suggest uninstalling Orphan packages every month or so, just like cleaning the Pacman cache.

-
-

Cache

-

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:

-
-

rm -rf ~/.cache/* # Clear the cache directory

-
-
-

That is more for now, I hope this artical has helped you clean your system.

- -
- - - diff --git a/public/articals/arch/1CleaningArchLinux b/public/articals/arch/1CleaningArchLinux new file mode 100644 index 0000000..b58f913 --- /dev/null +++ b/public/articals/arch/1CleaningArchLinux @@ -0,0 +1,54 @@ + + + + + + Cleaning Arch Linux + + + + +
+ +
+
+

How to Clean Arch Linux

+

Date: 21:7:2024

+

In this artical I will be telling you how to clean up your Arch Linux system in the same way I do so.

+
+

Package Cache

+

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:

+
+

sudo pacman -Sc # Remove packages from cache not installed

+

sudo pacman -Scc # Remove packages from cache both installed and not installed

+
+

Some people like to automate this task of cleaning the cache with paccache, 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. +

+
+

Removing Orphan Packages

+

Orphan packages are those installed as dependencies for other software but are no longer needed. For example, when you install LibreWolf, 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.

+ +
+

sudo pacman -Qtdq # Identify orphan packages

+

sudo pacman -Rns $(pacman -Qtdq) # Uninstall orphan packages

+
+

I suggest uninstalling Orphan packages every month or so, just like cleaning the Pacman cache.

+
+

Cache

+

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:

+
+

rm -rf ~/.cache/* # Clear the cache directory

+
+
+

That is more for now, I hope this artical has helped you clean your system.

+
+ + + diff --git a/public/articals/archlist b/public/articals/archlist new file mode 100644 index 0000000..d5ec90b --- /dev/null +++ b/public/articals/archlist @@ -0,0 +1,32 @@ + + + + + + Arch Linux index + + + + +
+ +
+
+

Arch Linux articles

+

Due to the fact I plan to write more articles about Arch Linux I have decided to make an index to preper for the future when I do write more.

+
+

Tutorials

+ +
+ + + diff --git a/public/index.html b/public/index.html index 7e26a81..dd1a715 100644 --- a/public/index.html +++ b/public/index.html @@ -35,8 +35,8 @@

Articles

-- cgit v1.2.3