Assuming you have a PXE server running you only need small edits to the virt-manager config read more →
I decided that I want to self-host all my docker images for the purposes of regularly rebuilding and security scanning. The first step is to set up a registry, which coincidently enough you can do with a Docker container 😛! Instructions for setting ... read more →
Dropdown menue in upper left - doesn't look like one but just click the name of the current device. URL will be rtsp://<ip address> <- this was the ticket for me read more →
I have started using VMs more and more in my development workflow and it's impossible to work in a VM without an internet connection for me most of the time. Setting up the KVM networking is kind of confusing to me and I've done it two different way ... read more →
man can be a pain to read... and there's lots of alternatives out there and one I've just started playing with is cheat man man will give you this plus a billion more lines of docs, which is useful when you need it... MAN(1) ... read more →
I got into a pickle where I encrypted the ssh keys I use for my SSH connections on LAN, but then I couldn't run my ansible playbook on my server! ssh-keygen -p and leave the new passphrase blank saved my day (although password protected key files ar ... read more →
Mike Driscoll recently tweeted about making colored out with pandas DataFrames and I just had to try it for myself Use Case First though... why? My biggest use case is a monitoring pipeline of mine... The details aside, the output of my pipeline is ... read more →
see samba config on hogwarts read more →
[email protected] [email protected] #! /bin/bash # pick multiple emails from list and combine into comma seperated array emails=`cat .../emails | fzf -m | sed 's/^\|$/"/g'|paste -sd,` echo $emails read more →
My Nextcloud woes I wrote here about setting up www-data as the owner of any directories you want nextcloud to manage. However, I regularly struggle wtih permissions issues on my NAS because of the external storage app anyways so I've decided to jus ... read more →