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

50 total results found

Docker

Hard Cider

Hobbies

NOTE: Amazon affiliate links below. Ingredient list: - Red Star Champagne yeast - https://amzn.to/3rNc63M- 1 gallon of apple juice- 1 cup of granulated white sugar- 32-64oz other juice for flavoring (OPTIONAL) Equipment list: - 1 empty 1 gallon jug - https...

hobby
hard cider

Traffic Flow

General

brand
Mikrotik
technology
networking

logWatch.sh

Tips & Tricks Shell Scripts

#!/bin/bash # USER VARIABLES TARGET_LOG_FILE="/var/tmp/testLog.log" # Log File to monitor MONITOR_LOG_FILE="/var/tmp/mon.log" # Monitor sript log file TEMP_CONTEXT_FILE="/var/tmp/tempContext.txt" # Temp file for context excerpt CONDITION_STRING=...

Webex Status Light

Automation Home Assistant

This note provides the specific details needed to tie your Webex status into a Do Not Disturb light via Home Assistant. First, you need to edit your HA configuration.yaml file to refer to two other files. One for command line sensor configurations, and the ot...

New Portainer setup

Docker Portainer

# create persistent volume for portainer data docker volume create --driver local portainer # create portainer container docker run -d \  -p 8000:8000 \  -p 9443:9443 \  --name portainer \  --restart=always \  -v /var/run/docker.sock:/var/run/docker.sock \ ...

DWService agent installation

Tips & Tricks

wget https://www.dwservice.net/download/dwagent_x86.shchmod +x dwagent_x86.sh./dwagent_x86.sh

Fix for DWService Headless

Tips & Tricks

If HDMI is plugged in at boot, the monitor works, and you can remote in.If HDMI is unplugged at boot, the dummy display driver takes over, and you can remote in. If the monitor is plugged in or unplugged after boot, you can use the shell connection to run vnc...

Terraform

Fixing remote-exec errors in Terraform when receiving "\0xd" messages in output

Terraform

The "\x0d" failure when using Terraform's remote-exec provisioner (often when initiated from VS Code) is caused by a Carriage Return (CR) character, which is part of the Windows-style line endings (CRLF, or \r\n). Linux/Unix systems expect only Line Feed (LF, ...