Skip to content

Instantly share code, notes, and snippets.

View Paraphraser's full-sized avatar

Phill Paraphraser

  • Cootamundra NSW Australia
View GitHub Profile
@Paraphraser
Paraphraser / proxmox-debian-bookworm-disk-resize.md
Last active April 4, 2025 03:25
Resizing Proxmox-VE logical disks for Debian Bookworm guests

Resizing Proxmox-VE logical disks for Debian Bookworm guests

Proxmox-VE is great. You can spin-up a Debian guest in a trice, and then spend endless hours tinkering away getting everything working just the way you want. You declare yourself happy and move on to other things.

Until…

Days, weeks or months later you hit a problem when your guest OS runs out of disk space. You think back to the moment when you picked the guest's disk size. And you realise that you - to borrow the words of the Grail Knight in Indiana Jones and the Last Crusade - "chose poorly".

You think, "surely auto-resizing should be possible". You Google. You find some hints that ZFS might've been a solution but, like your original choice of disk size, that, too, would've needed you to "choose wisely" in advance.

@Paraphraser
Paraphraser / Docker-volumes.md
Last active March 31, 2025 10:55
On IOTstack and Docker volumes

On IOTstack and Docker volumes

IOTstack is a framework for running arbitrary collections of Docker containers using docker compose. The canonical example is the "MING" stack (Mosquitto, InfluxDB, Node-RED and Grafana).

From time to time, someone asks a question like this:

I have read that Docker's "volume mounts" are recommended and/or better than "bind mounts". Why does IOTstack use "bind mounts"?

Unless you understand the differences between Docker's mount types, it's difficult to see why you would want choose one type over the other. This gist attempts to explain the differences between Docker bind and volume mounts, and then answers the question of why IOTstack uses Docker bind mounts exclusively.

@Paraphraser
Paraphraser / AddNetworkManagerToDebian.md
Last active June 9, 2024 13:42
Add Network Manager to Proxmox-VE Debian Bookworm guest

Add Network Manager to Proxmox-VE Debian Bookworm guest

When you download a Debian "netinst" ISO and use it to construct a system, you reach an installer screen with the title "Software selection". By default, that screen enables the desktop environment and offers you a choice of windowing interfaces.

If you leave the desktop environment enabled then both Network Manager and the Avahi daemon (multicast DNS) are installed and configured, and the system will boot into the desktop windowing environment.

However, if you disable the desktop environment in the "Software selection" screen then the system will boot to the command-line console and neither Network Manager nor the Avahi daemon will have been installed.

It is not immediately clear why electing not to install a windowing environment should also affect data-communications features. It just does.

@Paraphraser
Paraphraser / Debian-NodeRED-upgrade-nodejs.md
Last active May 6, 2024 12:25
IOTstack tutorial: Upgrading the Debian-based Node-RED DockerHub image to use node.js version 18

IOTstack tutorial: Debian Node-RED + node.js 18

Scenario

A thread on the IOTstack Discord channel can be summarised like this:

  1. The DockerHub nodered/node-red releases page includes tags for both Alpine and Debian-based containers.

  2. At the time of writing (2024-05-06), the support matrix is:

    DockerHub tag | latest | latest-debian

@Paraphraser
Paraphraser / Removing bad data from InfluxDB.md
Last active February 16, 2024 22:30
IOTstack tutorial: removing bad data from InfluxDB

IOTstack tutorial: removing bad data from InfluxDB

A fairly common question from IOTstack users running InfluxDB is how to remove "bad data" from a database?

This gist focuses on InfluxDB 1.8 and the InfluxQL commands needed to operate upon an InfluxDB 1.8 database. You are entirely on your own if you are using InfluxDB 2.x.

prevention is better than cure

The best advice I can give you is to avoid the problem by ensuring that "bad data" never gets into your database in the first place. For example:

@Paraphraser
Paraphraser / custom-os-builds.md
Created December 21, 2023 01:51
Installing IOTstack on custom OS builds

Installing IOTstack on custom OS builds

The following question appeared on the IOTstack Discord channel. It's the second part of a thread but I'll come back to the first part later:

I'm still struggling with this error. So the instruction says don't assign a password for root during the Debian installation. HOWEVER, the OS image that I'm using already comes with a default root password and I have to enter the default password to continue at the first step. Is there any way to remove this default password? Otherwise, it seems there is no way to continue the installations on this OS...

I don't want to over-sell this but the general thrust of the Unix industry over the last 20-odd years has been to avoid enabling the root account. In more recent times, security gurus, legislatures and best practice have been leading us to a world where there are no default accounts for anything.

Thus, while the general principle mu

@Paraphraser
Paraphraser / IOTstack tutorial - adding a container.md
Last active April 1, 2024 23:06
IOTstack tutorial - adding a container

IOTstack tutorial - adding a container

This gist is a response to a Discord question asking:

is it possible to add my own container to IOTStack? for example: couchdb

The answer is "yes" and CouchDB is quite a good example to use for a tutorial.

contents

@Paraphraser
Paraphraser / IOTstack tutorial - two instances of Node-RED.md
Created July 24, 2023 11:32
IOTstack tutorial: running two instances of Node-RED on the same host

IOTstack tutorial: running two instances of Node-RED on the same host

Suppose you have a Node-RED container running but you want to create a test version where you can experiment safely without disturbing the original.

Running multiple instances of a container is something Docker excels at! This tutorial explains how to set it up. It will also help you to understand the differences between containers running in host mode and non-host mode.

Assumptions

  1. Your existing Node-RED service definition looks similar to this:
@Paraphraser
Paraphraser / ZeroTier-macOS-menu-bar.md
Created June 16, 2023 06:12
ZeroTier GUI controls in the macOS (Ventura) menu bar

On ZeroTier, macOS and the menu bar

Over at the ZeroTier forum is a thread:

The thread covers two distinct problems:

  1. The ZeroTier One.pkg package downloaded from ZeroTier.com won't install on macOS Ventura.
  2. The package installs but the associated app won't start and the menu bar item is not present.
@Paraphraser
Paraphraser / Compiling GoSungrow.md
Last active March 28, 2025 22:42
Compiling GoSungrow

Updating GoSungrow

This gist is intended to help you deal with the following error messages:

  • Error: appkey is incorrect 'er_invalid_appkey
  • Error: unknown error 'Request is not encrypted'

This gist has four parts. The instructions you should follow depend on what you want to do:

| Part | Explains how to |