Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

15 total results found

FiOS Router

Homelab System

Set Router to Bridge Mode Login to router administration interface Select "My Network" on the top bar https://kb.its-et.me/uploads/images/gallery/2024-07/NjfmO28jwrLeg9rS-image.png Select "Network Connections" > "Advanced" Select edit icon for "Network ...

Docker Healthchecks

Homelab Services

Rationale Use these to verify the health of database containers. This allows me to only run web services when a database is healthy. This prevents us from hiding a silent failure. MariaDB healthcheck: test: ["CMD", "healthcheck.sh", "--connect", "--innod...

crypttab

Homelab System

This configuration allows us to automatically unlock but not mount external drives. For example: /etc/crypttab diskn UUID=<path to disk by /dev/disk/by-uuid> /etc/keyfiles/<keyfile name> luks,nofail This configuration will use the keyfile /etc/...

Intel NIC Configuration

Homelab System

Wireless Configuration # iwlwifi.conf # Enable antenna aggregation options iwlwifi 11n_disable=8  

LUKS

Homelab System

https://wiki.archlinux.org/title/Dm-crypt/Specialties#Disable_workqueue_for_increased_solid_state_drive_(SSD)_performance

Import a qcow2 file

Homelab Proxmox

qm importdisk <vm_id> file.qcow2 <storage-backend>  

Rename a node

Homelab Proxmox

#!/usr/bin/bash mkdir -p /tmp/qemu ## make temp dir for moving VM config files cp /etc/pve/nodes/$original_hostname/qemu-server/* /tmp/qemu/ hostnamectl set-hostname "$new_hostname" sed -i "s/$original_hostname/$new_hostname/g" /etc/hosts services=(...

PiKVM Tailscale Certificate Update Service

Homelab System

These systemd services allow me to update the Tailscale certificates for PiKVM every 80 days without manual intervention. cert-update.timer [Unit] Description=Update tailscale certificates for nginx [Timer] OnBootSec=1min OnUnitActiveSec=80d AccuracyS...

Promtail

Homelab System

My Default Promtail Configuration # Global promtail configuration server: http_listen_port: 9080 grpc_listen_port: 0 clients: - url: http://<log-host>:3100/loki/api/v1/push limits_config: max_line_size: 384kb scrape_configs: - job_nam...

How to upgrade MariaDB inside Docker

Homelab Services

docker compose exec -it db bash -c "mariadb-upgrade -u root -p" Then enter password

Policy - systemd-resolved

Homelab SELinux

Fix Intel Ethernet NIC Hang

Homelab Proxmox

Problem If ethernet hangs and you get this journal log: Mar 29 05:14:04 pve-01 kernel: e1000e 0000:00:1f.6 enp0s31f6: Detected Hardware Unit Hang: TDH <3> TDT ...

CUPS

Homelab

Firewall rules: 

Printers

Client Devices

Unable to add AirPrint/mDNS/Bonjour Printer Verify if you are getting the following error in /var/log/cups/error_log E [19/Apr/2025:20:23:27 -0700] [CGI] Unable to create PPD file: Could not poll sufficient capability info from the printer (PRINTER_URL) via ...

When plasma won't start after a kernel upgrade

Client Devices KDE Fixes

Most likely it's something wrong with X, I fixed my issues by adding the following to /etc/sddm.conf.d/10-wayland.conf [General] DisplayServer=wayland GreeterEnvironment=QT_WAYLAND_SHELL_INTEGRATION=layer-shell [Wayland] CompositorCommand=kwin_wayland -...