I recently ran accross the situation where I wanted to push changes to a repo that was stored on my personal Gitlab server. The issue was that I had recently restructured my homelab and the only way to get to the gitlab server via SSH was through a jumpbox. These …
read moreOther articles
Install RDP on Debian 10 (Buster)
Start off with a freshly updated system and install the requirements:
apt update apt upgrade apt install -y xrdp xfce4 xfce4-terminal gnome-icon-theme-full tango-icon-themeMake xfce4 our default xsession:
echo xfce4-session >~/.xsessionMake xfce4 the default for by editting the following file: :::bash nano /etc/xrdp/startwm.sh
Replace what is …
read moreRoad Warrior VPN
This is a dead simple way to get an OpenVPN server up and going with individual client certificates.
wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.shread more#!/bin/bash # # https://github.com/Nyr/openvpn-install # # Copyright (c) 2013 Nyr. Released under the MIT License. # Detect Debian users running the …Mesowx Real Time Weather Graphing
To start off this tutorial it is assumed that you have Weewx completely set up on another server with the weather station properly connected and reporting. This tutorial will be using a Master / Slave MYSQL database that is configured like my previous blog entry.
The purpose adding Mesowx into the …
read moreMYSQL Master Slave Replication over SSH tunnel
The purpose of running having a master / slave relationship between your databases is that the slave database will be an exact replica of the specified master database. The purpose of running the connection through a SSH tunnel is to ensure:
- Connection is encrypted
- MYSQL server will only connect to the …
Repair MYSQL Master Slave Replication
One of the interesting parts of living on a boat is probably something that most people never think of dealing with. Power Management! Since we only have 30 amps of power available to draw at any one time we have to be quite careful on what is running. On those …
read moreRaspberry Pi WS-2080 Weather Station
After surviving a windstorm that produced 40-60 mph winds on the boat I decided that I wanted a weather station to capture that data! The closest anemometer was very far away and definitely was not subjected to the same winds that I had in my marina. The following post is …
read moreC++
These posts will be various lessons and lessons learned as I start learning how to program in C++. My first experiences programming started in Windows batch files and then in high school I was introduced to Perl. While it could be argued that neither batch or Perl are "real programming …
read more