Advanced Search
Search Results
50 total results found
Docker
Hard Cider
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...
Traffic Flow
logWatch.sh
#!/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
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
# 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
wget https://www.dwservice.net/download/dwagent_x86.shchmod +x dwagent_x86.sh./dwagent_x86.sh
Fix for DWService Headless
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
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, ...