Grafana Prometheus Monitoring

Hey everybody, today we will be going through on how to setup a Grafana + Prometheus stack to allow you to monitor external tools such as Blocky and other services that can output to prometheus(Basically anything with some effort). I have used this to monitor my Linux ISO collector, and my DNS server and it has worked great and has allowed me to create nice dashboards for use. We will be using docker and docker compose to set it up with bind mounts so that trasnfering data is easy. ...

September 14, 2023 · 3 min · 591 words · Stetsed

Proxmox ZFS ShareNFS

Hey everybody, quick guide today as I could find very little info on this so decided to write this. I will be going through the steps to use ShareNFS on proxmox combined with ZFS to setup an NFS server. We will be adding a few paramters to give convienct access to the NFS server however as I will explain later some of my ones might introduce some inherent risk. Requirments Promox VE8 Server* Root Access A cup of Coffee An earlier version of proxmox may work and I used the same on Proxmox VE7 but it may not work on earlier versions, do it at your own risk. Setup Installing the required package So this is what I forgot to do when setting it up which is installing the required package which is nfs-kernel-server, so go ahead and install that with apt. ...

September 13, 2023 · 3 min · 463 words · Stetsed

Proxmox Floating Ip

Hey everybody welcome back to another guide, today I will be showing you how we can setup a Floating IP on Proxmox VE 8 using Keepalived. This can be handy when your running a cluster and you want to always make your proxmox available even if one of the nodes is down without having to rely on another program to do this for you like NGINX or HAProxy. Requirments 2 or more Proxmox VE 8 nodes Root access to all nodes An IP you designate as a floating IP Setup First let’s go ahead and install keepalived ...

August 27, 2023 · 3 min · 587 words · Stetsed

ZFS on Arch Linux

Good evening, today I will be showing in this guide how to use the ZFS(Zetabyte-File-System) on Arch Linux. I shall be doing this because ZFS has a number of advantages that can be useful such as: Builtin Snapshots Feature Builtin Encryption Builtin File System Compression Builtin Deduplication Builtin Volume Manager Builtin Transfer Mechanism All of these features together make it a really appealing option to use as your file system, but do be warned that due to licensing issues between the GPL which Linux uses and CDDL which ZFS uses, ZFS cannot be included into the main line kernel. As such we will be using an external project called Arch ZFS which provides Arch Repositories for ZFS packages, you may also use the AUR for such tasks but generally is unrecommended as it would require you to create a new user and then build due to not being able to makepkg on the root user. ...

May 29, 2023 · 8 min · 1602 words · Stetsed

Framework Power Tuning

Learn how to tune Linux on the Framework 13 Laptop to achieve better battery life!

May 19, 2023 · 4 min · 726 words · Stetsed

Fingerprint ArchLinux Framework

This guide will show you how to enable fingerprint scanning on Archlinux using fprintd. Firstly run Appimage to clear the current fingerprint device and make sure we don’t get errors later. After this install the fprintd package 1 pacman -Syu fprintd Then go ahead and enroll your fingerprint 1 fprintd-enroll This will allow you to enroll the right index finger, to do other fingers do. 1 fprintd-enroll -f left-thumb/left-middle-finger And just replace the finger with the finger you want to enroll. ...

May 18, 2023 · 1 min · 194 words · Stetsed

Setup Win10 VFIO GPU Passthrough with Looking Glass on Arch Linux

Install required packages 1 yay -Syu qemu-desktop libvirt edk2-ovmf virt-manager dnsmasq dmidecode bridge-utils spice-protocol libsamplerate Configuration Setup Libvirtd Firstly we will need to enable the networking for libvirt and the libvirt service, which the below commands will do. And also add our user to the libvirt group(for convience), do know this is a massive security risk as it’s the same as just giving the user no password root acces, if you do not want this you can ignore the last command but be aware you will have to enter a pasword when you wanna start your VM and do other such functions ...

May 18, 2023 · 4 min · 827 words · Stetsed