Advanced Search
Search Results
85 total results found
Installation Guides for Software and Services
Documentation on standing up homelab software's
Homelab
Homelab documentation, scripts and how to setup
BookStack
Installation Guide for Internal Services
BookStack Installation Guide
This Guide goes trough steps necessary for creating a good well organized step by step process. This guide walks you through deploying BookStack using Docker and Docker Compose, with a working configuration that includes MariaDB, proper environment variables, ...
Troubleshoots and Updates
Guides for Troubleshooting software and ways to update specific system that are running in homelab.
Updating Guide
New Page
SSH Commands and Guides
OpenSSH guide in using terminal and multiple benefit function to make ssh easy and secure
Synology
Synology Drive Guide for installation, troubleshooting and best practices
Updating Portainer on Docker Standalone
This guide will walk you trough updating Portainer in terminal. Always match the agent version to the Portainer Server version. In other words, when you're installing or updating to Portainer 2.27.9 make sure all of the agents are also on version 2.27.9. To u...
SSH Key Authentication Create and Share
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: ...
Synology Setup Guide
Setup Guide for Synology NAS
Managing Multiple SSH Keys
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 ...
Authentik
Identity Provider self hosted on Internal Services VM
SSH Agent for Passphrase 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 phras...
Pangolin
Pangolin Install and Setup Guide
Disable Password Login
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...