Fix Proxmox Backup Server Datastore

When rebuilding PBS, the datastore permissions may need to be repaired. 1. Use the chmod Command to make the Root DataStore /pve-backups/ Directory in /mnt/ have the Same Permissions Listed in the Code Snippet. chmod 755 /mnt/pve-backups/ 2. Use the chmod Command to make the DataStore SubDirectories of /mnt/pve-backups/ have the Same Permissions listed in the Code Snippet. chmod 644 /mnt/pve-backups/.lock chmod -R 750 /mnt/pve-backups/.chunks … Read more

Redirect all DNS Requests to Opnsense

This tutorial will show you how to force all DNS querys to go through Opnsense router regardless of DNS servers specified on the local system. This will redirect anything going through 53 to the router itself. Go to Services -> Unbound DNS -> General Verify that ether ALL is selected or localhost with your LAN … Read more

Restore Immich Database

Stop the Immich stack. From Truenas, restore both the data and db folders using the existing sync task. Start the Immich stack and allow the database to be created from scratch. Stop the Immich server container. Move the latest backup from /data/backups to /db Log into the database container and run Stop then start the … Read more

Crit every other shot

Luck Critical Savvy Lucky Hit Limit-Breaking Pieces 3 3 Yes 5 5 3 Yes 4 11 3 Yes 3 18 3 Yes 2 28 3 Yes 1 40 3 Yes 0 Luck Critical Savvy Lucky Hit Limit-Breaking Pieces 7 2 Yes 5 15 2 Yes 4 27 2 Yes 3 45 2 Yes 2 70 … Read more

Fix TrueNAS WebUI Reloading

This occurs because the TrueNAS server has more than one interface where the WebUI is accessible from and is not being accessed from a computer on the same interface subnet. The requests are sent to the correct interface, but are returned by the incorrect interface, resetting the connection and forcing the UI to reload. This … Read more

Upgrade PostgreSQL on Docker

A step-by-step tutorial on safely migrating your PostgreSQL data between major versions on Docker. Upgrading a major version of PostgreSQL, such as from 17 to 18, isn’t a simple in-place process because the underlying data storage format can change. When running PostgreSQL in Docker, the recommended method is a classic “dump and restore.” This guide … Read more