1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<!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>
<nav class="site-nav">
<div class="nav-container">
<div class="nav-left">
<a href="/" class="site-title">Shipwreckt</a>
</div>
<ul class="nav-right">
<li><a href="/">Home</a></li>
<li><a href="/archive/">Archive</a></li>
<li><a href="/links/">Links</a></li>
<li><a href="/contact/">Contact</a></li>
</ul>
</div>
</nav>
<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>
|