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/posts/archserver | |
| parent | 53d6ae2b5568437afa5e4995580a3fb679b7b91b (diff) | |
Changed from static to 11ty!
Diffstat (limited to 'public/posts/archserver')
| -rw-r--r-- | public/posts/archserver/index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/public/posts/archserver/index.html b/public/posts/archserver/index.html new file mode 100644 index 0000000..38e3996 --- /dev/null +++ b/public/posts/archserver/index.html @@ -0,0 +1,73 @@ +<!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>Arch Linux Server!</title> + </head> + <body> + <article> + <header> + <h1>Arch Linux Server!</h1> + <p class="post-date">August 26, 2024</p> + </header> + <div class="post-content"> + <hr> + <h2>Introduction</h2> +<p>Today I have installed <a href="https://archlinux.org">Arch Linux</a> on my <a href="/posts/servers">home server</a>; I will be honest it has been so smooth!</p> +<p>I use Arch Linux as my desktop Linux distro, and I knew that you could use it as a server, but I never really thought of doing it. The only reason why I have done this is just to see how good it actually is because, well, I do not hear about people using it as a server much.</p> +<hr> +<h2>What do I have on the server? 📋</h2> +<p>I have all the same services that I hosted on my previous server install and more!</p> +<ul> +<li>Searxng 🔎</li> +<li>qBittorrent ⟳</li> +<li>Jellyfin 📺</li> +<li>MariaDB 📋</li> +</ul> +<p>I was thinking about adding Nextcloud to my server, but I can just use the scp command for backups, plus I do not have much to put on it due to the fact all my work is hosted on Gitlab.</p> +<hr> +<h2>Searxng 🔎</h2> +<p>Searxng is a metasearch engine that takes results from other search services. It does not track you; even the public ones don't! I like it because it gives me good results and it is easy to self-host, so I know 100% that I am not being tracked. I did try to install it without Docker, but the guidedid not work for me, so I basically took the easy way out with the official Docker image that worked.</p> +<h2>qBittorrent ⟳</h2> +<p>I have the web UI of qBittorrent installed on my Arch Linux server. I used the Arch Linux guide on how to set it up, and I only really needed to install two programs. Then, just like that, everything is installed and working! It was really easy, and I am more satisfied with it. The reason why I have a torrent is just to support some Linux distros I like and have the ISOs ready when I need them.</p> +<h2>Jellyfin 📺</h2> +<p>Jellyfin is a free, as in freedom software, self-hosted media server. If you have ever used <a href="https://www.plex.tv/">Plex</a>, it is kind of like that, but Jellyfin is better because it has a whole load of <a href="https://jellyfin.org/docs/general/server/plugins/#official-plugins">plugins</a> and is licensed under the GPL-2.0, which makes it free software! But overall, it is an amazing media server, way better than Plex, so if you are able to switch over. I will be mostly hosting a few movies and books on it!</p> +<h2>MariaDB 📋</h2> +<p>MariaDB is a database server forked from <a href="https://www.mysql.com/">MySQL</a>. The reason why I have this installed on my server is because I want to start learning how to use a database on a server because, from what I can tell, it looks really good on a CV, and you never know, it could be useful to me in the future!</p> +<hr> +<h2>Last words</h2> +<p>I will probably only use Arch Linux for servers because it is hassle-free and easy to use! That is all there is to say it was easy and less of a headache than <a href="https://ubuntu.com/">Ubuntu</a>, at least in my experience.</p> +<p>But thank you for reading!</p> + + </div> + </article> + + + + + <footer class="post-footer"> + <!-- 🌟 Back button --> + <a href="/" class="back-button">⬅ Back to Home</a> + + + <p class="post-tags"> + + <a href="/tags/linux/" + aria-label="View posts tagged linux"> + linux + </a> + + <a href="/tags/tech/" + aria-label="View posts tagged tech"> + tech + </a> + + </p> + + </footer> + + </body> +</html> + |
