Advanced Search
Search Results
145 total results found
Container
Howto Prepping the base configuration /system logging action add name=ContainerLog target=memory /system logging add action=ContainerLog topics=container /container config set ram-high=500.0MiB /container config set registry-url=https://registry-1...
Ubuntu unattended upgrades
# enable unattended upgrades dpkg-reconfigure --priority=low unattended-upgrades # edit unattended-upgrades config file vim /etc/apt/apt.conf.d/50unattended-upgrades Unattended-Upgrade::Automatic-Reboot "true"; Unattended-Upgrade::Automatic-Reboo...
Govee Bluetooth Hygrometers
Playing with some Govee H5074 and H5075 Bluetooth hygrometers. All code below was grabbed from Google search AI responses and then altered to suite. import asyncio import struct from bleak import BleakScanner timeout_seconds = 20 address_to_look_fo...
Code Signing
Creating the certificate Below are the steps to create a code signing certificate using OpenSSL and an established EasyRSA CA. # Step 1: Generate either an RSA or an EC private key... pick one... openssl genrsa -out SuperCodeSigning.key 2048 openssl ecpara...
DHCP Server Lease last-seen comparison
/ip dhcp-server lease print where last-seen > "30d" /ip dhcp-server lease print where last-seen > "30d" && last-seen !="never" /ip dhcp-server lease print where last-seen > "30d" && last-seen !="never" && server=dhcp-lan && comment~"^auto-static"