tmux — Terminal multiplexer (alternative to screen) for running/previewing multiple processes and persisting sessions across disconnects. Has 3 layers: session, window, panes.
CTRL + b):
d – detach from sessionSHIFT + 5 – horizontal pane splitSHIFT + ' – vertical pane splitArrow keys – switch panesq – show pane index numbers (q + 2 to jump to pane 2)CTRL + Arrow keys (hold) – resize paneALT (1-2) – layout optionsc – new windown – next window, – rename windoww – list windows/sessionsx – kill paneSHIFT + 7 – kill window[ – scroll/navigate pane (g + line number to jump)tmux a – attach to most recent sessiontmux new -s <session name> – create named sessiontmux ls – list sessionstmux a -t <session_name> – attach to specific sessiontmux kill-session [-t <session_name>] – kill sessiontmux kill-server – kill all sessionssetw -g mode-keys vi to ~/.tmux.conf for vi keybindings (space to highlight, enter to copy, CTRL+b+] to paste)GlusterFS — Open-source distributed filesystem for scalable storage across multiple servers/nodes, allowing shared storage across e.g. multiple Kubernetes nodes.

gluster volume create) run on one server propagate to the whole cluster.glusterfs-server from PPA, create mount dir, start/enable glusterd, add hosts entries, gluster peer probe, gluster peer status, gluster volume create ... replica ... force, gluster volume start, status, info, profile start/infoglusterfs-client, create mount path, mount -t glusterfs ..., verify with df -kh, add entry to /etc/fstabrsnapshot — Open-source incremental backup utility based on rsync; supports local and remote (SSH) machines.
rsnapshot <level_name> via script or cronalpha.0 newest to alpha.5 oldest)snapshot_root /path/to/directory sets where backups are storedbackup directives map source paths to snapshot subdirectoriescmd_ssh, and optionally cmd_du and link_destBIND DNS — Open-source DNS server suite for resolving domain names/IPs, supporting authoritative DNS, caching, zone management, etc.
named.conf — main config file; supports include and ACLs
directory, recursion yes, allow-query, forwarders, and zone blocks/var/named/example.com.zone) define authoritative records: SOA, NS, A, AAAA, CNAME, MX, TXT, etc.sudo systemctl restart named.service after changes; test with nslookup or digGPG (File Encryption) — GnuPG, an open-source OpenPGP implementation for encrypting/decrypting files and securing communications.
.gnupg directory (pubring.kbx for public, secring.kbx for secret)gpg --full-generate-key – generate keygpg --list-keys / gpg --list-secret-keys – list keysgpg --export --armor <ID/email> > publickey.asc – export public keygpg --import <file> – import a public keygpg --encrypt --recipient <email> <file> – encryptgpg --decrypt <file.gpg> > <file> (or d) – decryptzip --encrypt secure.zip <files> – password-protected zipopenssl pkeyutl – alternative for smaller files:
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -outform pem -out rsakey.pemopenssl pkey -in rsakey.pem -out rsapubkey.pem -outform pem -puboutopenssl pkeyutl -encrypt -pubin -inkey rsapubkey.pem -in <file> -out <file.enc>openssl pkeyutl -decrypt -inkey rsakey.pem -in <file.enc> -out <file>WoeUSB — Simplifies creating a bootable Windows USB installer
sudo woeusb --device /path/to/Win10_22H2_English_x64v1.iso /dev/sdXTracee — Open-source runtime security/forensics tool for Linux by AquaSec, using eBPF to detect suspicious behavior, anomalies, and malicious activity in real time
/tmp/Tracee by defaultWinApps — Lets Linux users run Windows apps (e.g. MS Office, Photoshop) natively-integrated on the Linux desktop
Waydroid — Open-source, container-based compatibility layer to run a full Android system (LineageOS-based, Android 11/13) on Linux
ntopng — Network traffic probe providing 360° network visibility
PFSense — Open-source customized FreeBSD distribution built for use as a firewall/router, fully managed via a web interface