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

12 total results found

SSH Agent for Passphrase Management

SSH Commands and Guides

SSH Agent is a background process that keeps your keys unlocked during your session. Start the agent and add keys: eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_rsa_work ssh-add ~/.ssh/id_rsa_personal Per each key added to ssh you will need to type a phras...

homelab
ssh
Access

Disable Password Login

SSH Commands and Guides

Once we have ssh key setup we can disable password login on servers once keys are set up. This way our server and services are more secure. SSH to server Edit sshd_config file sudo nano /etc/ssh/sshd_config Set Authentication to No PasswordAuthent...

Access
homelab
ssh

Managing Multiple SSH Keys

SSH Commands and Guides

If you use different keys for different servers or services (e.g., GitHub, work, personal), here’s how to keep it organized. Using different keys for different services makes things way more organized and secure. This way if one key gets compromised, you only ...

homelab
ssh
Access

Updating Authentik

Troubleshoots and Updates Updating Guide

This is extended guide to updating Authentik software. Read trough official Authentik documentation before running updates. Authentik Documentation Take a snapshot of Overseer vm Navigate to Authentik Directory cd /docker/authentik Backup Database...

Authentik
updates
Internal
homelab

Set Up Proxmox Backup Server with NFS Storage

Proxmox Setup Guide Backups Setup

Proxmox Backup Server PBS is design to backup Proxmox Virtual Environment.  Proxmox Backup Server is designed to run bare-metal on dedicated hardware, with dedicated drives for the operating system and backups. The main backup should be on bare metal and NFS S...

homelab
Proxmox
Proxmox Backup Server
Backup
Installation

Schedule Backup Job with PBS

Proxmox Setup Guide Backups Setup

This guide goes over scheduling backup job with PBS server. Proxmox Virtual Environment can run it's own jobs, but for best optimization, using deducation and verify jobs, having PBS is good idea. Also, it provides redundancy if pve goes down. Using Proxmox B...

Installation
homelab
Proxmox
Proxmox Backup Server
Backup

Installing Gotify with iGotify for iOS

Installation Guides for Software and Se... Gotify

Gotify is a self-hosted notification server that lets you send messages to devices and apps via a simple API. It’s great for server alerts, home automation, and custom scripts because you control delivery and history. iGotify is the bridge that makes Gotify w...

Installation
notification
homelab
Setup

What to Do When Files in the Import Folder Don’t Show Up

Troubleshoots and Updates Paperless NGX

Sometimes you drop documents into your Import folder, but nothing appears in the Paperless dashboard. This usually isn’t a bug — it’s just how Paperless watches for new files. Here’s a quick guide to diagnose and fix it. Paperless watches the import folder us...

homelab
paperless
Synology

Homelab Projects

About My Homelab Overview

This page goes over few major applications running on my Homelab RustDesk  RustDesk is an open-source remote desktop solution that I host locally on Akamai and Linode cloud platforms. This setup ensures secure, private, and encrypted communication channels, ...

homelab
blog

Installing Docker

Installation Guides for Software and Se... Docker

Steps for Installing Docker   Add the Docker Repository echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.li...

homelab
Installation
Docker

MeshCentral Installation on Ubuntu Server

Installation Guides for Software and Se... MeshCentral

These Instructions follow the steps of starting personal MeshCentral remote support server. Prerequisites require you to have set up ubuntu server, and have DNS record set up to point to this ip:443. It's good idea to use cloudflare tunnel or other type of tun...

homelab
Installation
MeshCentral

SSH Key Authentication Create and Share

SSH Commands and Guides

Why SSH Keys are Important? SSH keys use asymmetric encryption—a public key is placed on the server, and a private key stays on your device. Benefits over Passwords  Security: Keys are far more resistant to brute-force attacks than passwords Convenience: ...

homelab
ssh
Access