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

29 total results found

MeshCentral

Installation Guides for Software and Se...

MeshCentral
Installation
homelab

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

Dockhand

Installation Guides for Software and Se...

Installation
homelab
Docker
Dockhand

Overview

About My Homelab

Quick Summary about my Homelab and projects Im working on

homelab
blog

First Virtual Machine and Applications

About My Homelab My Homelab Journey

Once the network, hypervisor, and security were configured, I began spinning up my first virtual machine (VM). I chose Ubuntu Server as the base image because of its stability and reliable performance. Later on, I experimented with a few Fedora Server VMs, but...

blog
homelab

Proxmox Virtual Environment Setup

Proxmox VE & PBS Setup Guide

Complete Setup & Configuration Guide to setup Proxmox with prioritizing security

Setup
Installation
homelab
Proxmox

Proxmox VE & PBS Setup Guide

Documentation on Proxmox services and setup guides as well as best practices and security configurations

Installation
homelab
Proxmox
Proxmox Backup Server

Managing Multiple SSH Keys

SSH Commands and Guides Public Key Setup & Management

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
CLI
PKI

SSH Key Authentication Create and Share

SSH Commands and Guides Public Key Setup & Management

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: No n...

homelab
ssh
Access
CLI
PKI

SSH Agent for Passphrase Management

SSH Commands and Guides Public Key Setup & Management

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 phrase

homelab
ssh
Access
CLI
PKI