Tech/HowTo
- Tech/HowTo/Auto login to root on console with systemd
- Tech/HowTo/Automatic Hard Disk Checks
- Tech/HowTo/DROP
- Tech/HowTo/Debian Unattended Upgrades
- Tech/HowTo/Deployment with Git Hooks
- Tech/HowTo/Diffie-Hellman
- Tech/HowTo/Docker on Debian
- Tech/HowTo/External IP Identification Service
- Tech/HowTo/First Five Minutes on a System
- Tech/HowTo/Full Filesystem
- Tech/HowTo/Home Directory Dot-files in Git
- Tech/HowTo/IPMI Tips
- Tech/HowTo/Install OpenWRT on TP-Link OnHub
- Tech/HowTo/Installing Google Chrome on Debian
- Tech/HowTo/Linux Magic Keys and Tips
- Tech/HowTo/Linux Networking
- Tech/HowTo/Linux Unified Key Setup
- Tech/HowTo/MOTD Reboot Required
- Tech/HowTo/Media Server
- Tech/HowTo/Mediawiki Code Block in a List
- Tech/HowTo/Mediawiki Home Page
- Tech/HowTo/Mediawiki Layout Changes
- Tech/HowTo/Mediawiki Short URLs
- Tech/HowTo/Mediawiki Subpages
- Tech/HowTo/Mediawiki from the command line
- Tech/HowTo/Monitoring and Munin
- Tech/HowTo/Moving large Sparse files over the network
- Tech/HowTo/Network Install with Libvirt
- Tech/HowTo/PC Engines
- Tech/HowTo/PC Engines/labels
- Tech/HowTo/PXE boot with Libvirt
- Tech/HowTo/Python CLI Webserver
- Tech/HowTo/Python Freeze
- Tech/HowTo/Python Interview Challenges
- Tech/HowTo/Python Is
- Tech/HowTo/Python Portable Environment
- Tech/HowTo/QEMU MS DOS
- Tech/HowTo/QEMU MS Windows 95
- Tech/HowTo/QEMU MS Windows 98
- Tech/HowTo/Resetting DNS SOA Serial
- Tech/HowTo/Serving a CNAME at the apex
- Tech/HowTo/Set GRUB Timeout
- Tech/HowTo/Sideload Widevine Chromium
- Tech/HowTo/Supermicro IPMI Firmware Backup and Upgrade
- Tech/HowTo/Using systemd timesyncd on Debian
- Tech/HowTo/Validating and Testing Your Firewall
MAC Address Lookups
MAC Addresses are unique hardware identifiers and commonly called OUI. Look up vendor info via https://www.wireshark.org/tools/oui-lookup.html
Epoch Time
To get epoch time at the command line use:
date +%s curl https://lathama.net/epoch/
Get Current BIOS Version
The dmidecode tool allows you to ask for strings instead of searching the output.
dmidecode -s bios-version G1ET93WW (2.53 )
Browser Based Text Pad
In a modern quality web browser you simply put "data:text/html, <html contenteditable>" without the quotes into the address bar. So you are defining the content type and the HTML element with editable content option set. The benefit is that you can have a temporary text pad to copy stuff too without having to open another application.
Github Markdown Pretty Printer
Create a bookmark with the content below and when you want to print markdown on Github just use the bookmark to grab the pretty version.
javascript:var content = document. querySelector('article'); var body = document.querySelector('body'); body.innerHTML = ''; body.appendChild(content);
Global View Network Looking Glass
To get context on how a network or organization looks from a high level I use https://bgp.he.net/ to review the routing, DNS and various details of networks. Google also has https://dns.google.com which is useful.
Microsoft Line Endings
Remove Microsoft line endings from files that were maybe checked into a version control by accident
tr -d \015 filename