sou1

K8

Architecture Masters In a basic kubernetes cluster the masters run the following components: * kube-apiserver * kube-controller * kube-scheduler * etcd Workers In a basic K8's cluster the workers run the following components: * kube-proxy * kubelet kube-apiserver The kube-apiserver is the front end of the K8's control plane. It resides on

SELINUX

#freshhell * Generate systemd unit-file for mqtt-broker podman generate systemd -f -n mqtt-broker /root/container-mqtt-broker.service * Copy the unit-file to the systemd search folder cp container-mqtt-broker.service /etc/systemd/system/ * Reload systemd sudo systemctl daemon-reload * Start Container systemctl enable --now container-mqtt-broker.service Unit container-mqtt-broker.service could not be found. > Uh-oh,

Python Install

Python Install Guide Optional LXC Container launch to hold the python installation lxc launch local:ubuntu-16.04 python-dev-ub-16-04 apt install -y curl ca-certificates && update-ca-certificates apt upgrade -y Required packages to build and install python apt install -y \ wget \ build-essential \ libssl-dev \ zlib1g-dev \ libbz2-dev \ libreadline-dev \ libsqlite3-dev \ libncurses5-dev \ libncursesw5-dev \ xz-utils \ tk-dev

TMUX

One of the cool kids... New tmux Session tmux new-session -s <session name> Detach tmux Session ctrl+b d List tmux Sessions tmux list-sessions tmux ls Attach (re-join) detached tmux Session tmux attach-session -t <session name> Rename Session ctrl+b rename-session -t <old session name

GPG

Encrypt a File with GPG [https://gnupg.org/] gpg -c filename.tar.gz > This will ask for a passphrase either with GUI popup or CLI popup Decrypt a File gpg filename.tar.gz > This will decrypt a file One thing you'll notice, once the file is

sou1 © 2026