RSSAmplifier

Blog

panticz.de - Don't worry! It's only stuff...

panticz.deRSS feed ↗10 posts

Latest posts

Create LetsEncrypt wildcard certificate with LEGO and OpenStack Designate

Create LetsEncrypt wildcard certificate with LEGO and OpenStack Designate letsencrypt panticz 15. August 2026 - 13:40 Download LEGO binary https://github.com/go-acme/lego/releases/ LEGO_VERSION =$ ( curl -s https: // api.github.com / repos / go-acme / lego / releases / latest | grep '"tag_name"' | cut -d '"' -f4 ) curl -L "https://github.com/go-acme/lego/releases/download/ ${LEGO_VERSION} /lego_…

Sinilink XY6014 modbus control with ESP8266

Sinilink XY6014 modbus control with ESP8266 esp8266 esphome panticz 31. May 2026 - 12:07 ESPhome configuration substitutions: # Change this model to fit your particular one. # You can find it in Home Assistant as the device diagnostic "Model Name". model: "XY6014" device_name: "xy6014-controller" device_friendly_name: "sinilink-XY6014" device_description: "Power Supply" # Model specific settings…

JOY-IT JT-DPM8624 modbus control with ESP8266

JOY-IT JT-DPM8624 modbus control with ESP8266 panticz 31. May 2026 - 11:53 Enable Modbus https://joy-it.net/files/files/Produkte/JT-DPM8605/JT-DPM8600-Manual_2025-07-18.pdf https://joy-it.net/files/files/Produkte/JT-DPM8605/JT-DPM8600-Anleitung_2025-07-18.pdf S-CS 1 ESPhome configuration substitutions: # Change this model to fit your particular one. # You can find it in Home Assistant as the…

DAIKIN Altherma M HW

DAIKIN Altherma M HW smarthhome hardware esphome panticz 25. August 2025 - 8:21 DAIKIN Altherma M HW 200 EKHHE200PCV37 / FERROLI - EGEA TECH LT https://www.daikin.eu/en_us/products/product.html/EKHHE-PCV37.html https://www.ferroli.com/media/3540000410_03_EGEA_TECH_200%20LT%20-%20260%20LT%20-%20200%20LT-S%20-%20260%20LT-S.pdf Manual…

gPlugM integration in Home Assistant

gPlugM integration in Home Assistant smarthome panticz 23. August 2025 - 17:39 Manufacter https://gplug.ch/produkte/gplugm/ Installation https://gplug.ch/installationsanleitung/gplugmt/ configuration.yaml https://gplug.ch/blog/integration-gplugm-in-home-assistant/ https://gplug.ch/blog/integration-gplug-in-home-assistent/ homeassistant: customize_glob: sensor.gplugm_z_ei: unit_of_measurement:…

k9s

k9s Kubernetes panticz 21. May 2025 - 9:30 Install k9s https://github.com/derailed/k9s/releases RELEASE =$ ( curl -s https: // api.github.com / repos / derailed / k9s / releases / latest | jq -r .tag_name ) wget -q https: // github.com / derailed / k9s / releases / download / ${RELEASE} / k9s_linux_amd64.deb -P / tmp / sudo dpkg -i / tmp / k9s_linux_amd64.deb Install k9s with Ansible…

Proton VPN on Ubuntu

Proton VPN on Ubuntu vpn install panticz 19. May 2025 - 8:39 Install Proton VPN with Ansible - name: Install ProtonVPN become: true block: - name: Add protonvpn APT repository vars: protonvpn_release: 1.0.8 ansible.builtin.apt: deb: https: // repo.protonvpn.com / debian / dists / stable / main / binary-all / protonvpn-stable-release_ { { protonvpn_release } } _all.deb - name: Install ProtonVPN…

SSH forward traffic and DNS with socks5h

SSH forward traffic and DNS with socks5h ssh panticz 8. May 2025 - 14:43 Socks SSH forward internet and DNS https://datawookie.dev/blog/2023/12/ssh-tunnel-dynamic-port-forwarding/ # local ssh -R 1080 user @ remote # remote export http_proxy =socks5h: // localhost: 1080 export https_proxy =socks5h: // localhost: 1080 # export HTTPS_PROXY=socks5://localhost:1080/ #echo "nameserver 127.0.0.1" >…

OpenStack create VM from ISO image

OpenStack create VM from ISO image openstack panticz 24. April 2025 - 12:10 # create image from iso openstack image create --file / tmp / ubuntu-24.04.1-live-server-amd64.iso --disk-format iso --progress ubuntu-24.04.1-live-server-amd64.iso # create volume for the final VM openstack volume create test-vm1-vol1 --size 10 --bootable # create temporary installation VM openstack server create…

Incus Ansible deployment

Incus Ansible deployment incus ansible panticz 3. April 2025 - 10:14 --- - name: Create container hosts: incus1.example.com # become: yes tasks: - name: Create incus container community.general.lxd_container: url: "unix:/var/lib/incus/unix.socket" name: u2604 source: type: image mode: pull server: https: // images.linuxcontainers.org / alias: ubuntu / 26.04 / cloud protocol: simplestreams…