Skip to content

Instantly share code, notes, and snippets.

[[Snippets]]
Description = "zpool list (real space)"
Output = ""
Tag = ["truenas", "zfs"]
command = "zfs list -o space,refer,lrefer,quota,refquota -d0"
[[Snippets]]
Description = "truenas upgrade all jails to latest"
Output = ""
@crpb
crpb / topre-104ub-linux-usb-fix.txt
Created December 31, 2024 10:58
TOPRE 104UB / 87U / XF111T0 / REALFORCE - NOT WORKING OUTSIDE OF BIOS
################################################################################
# TOPRE 104UB / 87U / XF111T0 / REALFORCE BREAKS DOWN AFTER BIOS
# And when replugging the keyboard it only lights up shortly and the log shows
# something like this:
#
# Dec 31 11:26:31 kernel: usb 1-8: unable to read config index 0 descriptor/start: -32
# Dec 31 11:26:31 kernel: usb 1-8: can't read configurations, error -32
# Dec 31 11:26:31 kernel: usb 1-8: unable to read config index 0 descriptor/start: -32
# Dec 31 11:26:31 kernel: usb 1-8: can't read configurations, error -32
# Dec 31 11:26:31 kernel: usb 1-8: unable to read config index 0 descriptor/start: -32
#!/bin/bash
#set -x
SCRIPT_BUILD=202411254
GROMOX_MAILDIR_PATH="$(grommunio-admin config get options.userPrefix)"
SOFTDELETE_TIMESTAMP=${SOFTDELETE_TIMESTAMP:-30d20h}
function TrapQuit {
local exitcode=0
@crpb
crpb / diskspd.ps1
Last active June 4, 2024 00:27
DiskSpd auto download with drive and core cound selection
$DiskSpd = "$PSScriptRoot\DiskSpd\$($Env:PROCESSOR_ARCHITECTURE.ToLower())\diskspd.exe"
if ( -Not ( Test-Path $DiskSpd ) ) {
# Destination will be the directory of the script + 'DiskSpd'
$destdir = "$PSScriptRoot"
$tempdir = "$env:TEMP"
New-Item -Type Directory -Path $tempdir -ErrorAction Ignore
$file = "DiskSpd.ZIP"
$tempfile = Join-Path -Path "$tempdir" -ChildPath "$file"
Set-Location -Path $tempdir
$repo = "microsoft/diskspd"
@crpb
crpb / tmux-midclt
Last active June 6, 2023 04:26
helper to lookup some truenas midclt calls on the fly / also works w/o tmux / fzf required!
#!/usr/bin/env bash
# v=0.5 2023-06-06
# ~cb
#
# # TMUX
# cat << EOTMUX >> ~/.tmux.conf
# # TrueNAS MIDCLT-QUERYs
# bind-key C-t popup -E tmux-midclt
# EOTMUX
@crpb
crpb / Firefox-Pre-Task.ps1
Last active May 18, 2023 21:46
PDQ Deploy Firefox Auto-Download Package automatically in your own Language via a Pre-Task.
# Set the Version in which the Script is pasted.
#$ff_release = "Firefox"
$ff_release = "Firefox-ESR"
#For what purpose was this all?
$ff_lang = "de"
# Universal separator \o/
$sep = [IO.Path]::DirectorySeparatorChar
# 2023.05
# https://help.pdq.com/hc/en-us/articles/5719272144667-PDQ-Package-Library-Changelog
# PDQ changed their Auto-Download folder and filename schema
@crpb
crpb / syncoid_cleanup.sh
Last active February 24, 2023 06:01
little script to keep the snapshot-count in check for my truenas. "frequently" went above ~10k as i replicate every hour. syncoid_cleanup.sh
#!/bin/sh
ROOT="p0/bak/home"
frequently=4
hourly=36
daily=30
monthly=3
_remove_old_snaps() {
COUNT=$(echo "{$1}" |wc -l)
#echo "COUNT: ${COUNT}"
if [ "$COUNT" -gt "$2" ]
@crpb
crpb / CheckMK_Local_Mailstore.py
Last active October 2, 2022 21:37
CheckMK Local-Check Mailstore Licenses Version Profiles
#!/usr/bin/python3
import os
import configparser
import sys
from mailstore.mgmt import ServerClient as ms_api
import requests
from datetime import datetime, timedelta
# Config-File
@crpb
crpb / zfsinst.sh
Last active September 10, 2022 12:42
minimal debian installation with zfs / one or two disks.. haven't tried with two disks yet.. attention, this script will destroy your data without any question :-)
#!/bin/sh
modprobe zfs || exit
apt-get update
apt-get install ntpdate jq --yes
ntpdate-debian
#zpool export -f bpool
#zpool export -f rpool
#swapoff --all
#mount |awk '/\/mnt/ {print $3}'|xargs -n 1 umount 2>/dev/null
## vim: filetype=sh
# FARBSPIELE #
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
function red { printf "${RED}$@${NC}\n" ; }
function green { printf "${GREEN}$@${NC}\n" ; }