All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 21:57, 3 September 2026 Kenneth talk contribs moved page Tmux to Linux/tmux
  • 21:56, 3 September 2026 Kenneth talk contribs created page Tmux (Created page with "== ~/.tmux.conf == Converted from my screen#.screenrc <pre> $ cat ~/.tmux.conf # My tmux Configuration - $HOME/.tmux.conf # Converted from $HOME/.screenrc # --------------------------------------------------------------------------- # Prefix - match screen's ctrl+a instead of tmux's default ctrl+b # --------------------------------------------------------------------------- unbind C-b set -g prefix C-a bind C-a send-prefix # --------------------------------------...")
  • 21:31, 26 August 2026 Kenneth talk contribs created page Pinentry (Created page with " echo -e 'SETTITLE YUBI\nSETDESC YUBI\nSETPROMPT YUBI\nSETERROR YUBI\nGETPIN\n' | /usr/bin/pinentry | grep '^D' sample-pinentry.sh :: <pre> #!/bin/bash # Ensure pinentry is installed command -v pinentry >/dev/null 2>&1 || { echo "ERROR: pinentry not found" exit 1 } # Talk to pinentry using its text protocol response=$( { echo "SETTITLE Credential Prompt" echo "SETPROMPT Passphrase:" echo "SETDESC Please enter your passphrase." echo "GETPIN" }...")
  • 15:56, 26 August 2026 Kenneth talk contribs moved page Openjdk to OpenJDK (correct letter case)
  • 08:09, 20 August 2026 Kenneth talk contribs created page Linux/Power Report (Created page with "== Power Reports == <markdown> Ran terminal command: echo "--- 1 ---"; ipmitool sensor get "PW Consumption" 2>/dev/null | grep -E "Sensor Reading|Sensor ID"; echo "--- 2 ---"; ipmitool dcmi power reading 2>/dev/null | grep Instantaneous; echo "--- 3 ---"; ipmitool sdr type "Power Supply" 2>/dev/null; echo "--- 4 ---"; nvme get-feature /dev/nvme0 -f 0x02 -H 2>/dev/null | grep "Power State"; echo "--- 5 ---"; nvme smart-log /dev/nvme0 2>/dev/null | grep -iE "^temperature...")
  • 16:11, 19 August 2026 Kenneth talk contribs created page CentOS/10/Yum (Created page with "=== /etc/yum.repos.d/centos10.repo === ls -l /etc/pki/rpm-gpg rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial-SHA256 rpm -qa gpg-pubkey* | grep -i f4a80e https://www.centos.org/keys/ https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official-SHA256 curl https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official-SHA256 -o /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official curl --fail -s https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official-SHA256 -o /etc/pki/r...")
  • 19:06, 18 August 2026 Kenneth talk contribs created page Windows/Memory (Created page with "https://superuser.com/questions/437918/how-do-i-find-whats-eating-up-all-of-my-systems-memory-not-superfetch <pre> $TypeData = @{ TypeName = 'System.Diagnostics.Process' MemberType = 'ScriptProperty' MemberName = 'CommandLine' Value = {(Get-CimInstance Win32_Process -Filter "ProcessId = $($this.Id)").CommandLine} } Update-TypeData @TypeData get-process | sort PagedMemorySize64 -desc | select PagedMemorySize64, ProcessName, CommandLine > processes.txt g...")
  • 01:12, 13 August 2026 Kenneth talk contribs created page CentOS/10/Python3.14 (Created page with "== Python 3.14 == sudo yum install python3.14 python3.14-pip sudo alternatives --list sudo alternatives --display python3 sudo alternatives --display python sudo alternatives --display pip3 sudo alternatives --display pip # sudo alternatives --config python sudo alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 312 sudo alternatives --install /usr/bin/python3 python3 /usr/bin/python3.14 314 sudo alternatives --set python3 /usr/bin/python3...")
  • 09:37, 11 August 2026 Kenneth talk contribs created page Linux/markdown (Created page with "== The Best Markdown Viewers for the Linux Command Line == https://www.adamsdesk.com/posts/linux-markdown-viewers/ https://github.com/Titor8115/mandown https://github.com/Inlyne-Project/inlyne https://github.com/charmbracelet/glow https://github.com/textualize/frogmouth https://github.com/matkrin/mdman")
  • 00:15, 10 August 2026 Kenneth talk contribs created page Carbonyl (Created page with "== Carbonyl == https://github.com/fathyb/carbonyl")
  • 00:14, 10 August 2026 Kenneth talk contribs created page Links2 (Created page with "== Links2 ==")
  • 00:14, 10 August 2026 Kenneth talk contribs created page Lynx (Created page with "== Lynx ==")
  • 00:13, 10 August 2026 Kenneth talk contribs created page Linux/Console Browsers (Created page with "== As of 2026 == My favorite is absolute Browsh if you want any sort of rendering and browser compatability!! Second favorite is Lynx or Links2 if just need basic text console browser https://i.imgur.com/n3opXwa.png <markdown> | Browser | JS / Modern Compatibility | Visual Layout Support | Best For | |---|---|---|---| | Browsh | Full (Uses Headless Firefox) | Text-grid graphics & videos | Complex web apps (JS, HTML5) | | Carbonyl[](https://github.com/fathyb/carbonyl)...")
  • 23:57, 9 August 2026 Kenneth talk contribs created page Browsh (Created page with "== brow.sh == == Installation == https://www.brow.sh/docs/installation/ === Debian/Ubuntu === <pre> wget https://github.com/browsh-org/browsh/releases/download/v1.8.0/browsh_1.8.0_linux_amd64.deb sudo apt install ./browsh_1.8.0_linux_amd64.deb rm ./browsh_1.8.0_linux_amd64.deb browsh </pre>")
  • 23:39, 9 August 2026 Kenneth talk contribs created page Ubuntu/snapd (Created page with "== Termindate snapd with prejudice == snap list sudo snap list | awk '{print $1}' | xargs -L 1 sudo snap remove --purge sudo apt remove --purge snapd sudo apt-mark hold snapd Find and terminate any snapd directories: ## /home/snap sudo find /home -type d -name snap sudo find /home -regex '/home/[a-zA-Z0-9.]: snap' -type d -name snap # sudo find /home -regex '/home/[a-zA-Z0-9.]*/snap' -type d -name snap -exec rm -rf {} \; ## other candidates - this could ta...")
  • 23:20, 9 August 2026 Kenneth talk contribs created page Snapd (Created page with "See Ubuntu/snapd")
  • 09:10, 8 August 2026 Kenneth talk contribs created page Ansible/SSH (Created page with "== Setup == https://docs.ansible.com/projects/ansible/latest/os_guide/windows_ssh.html#windows-ssh <pre> Get-WindowsCapability -Name OpenSSH.Server* -Online | Add-WindowsCapability -Online Set-Service -Name sshd -StartupType Automatic -Status Running $firewallParams = @{ Name = 'sshd-Server-In-TCP' DisplayName = 'Inbound rule for OpenSSH Server (sshd) on TCP port 22' Action = 'Allow' Direction = 'Inbound' Enabled = 'True' # T...")
  • 09:04, 8 August 2026 Kenneth talk contribs created page Ansible/WinRM vs SSH (Created page with "== WinRM vs SSH == Connecting to Windows nodes Ansible connects to POSIX managed nodes using OpenSSH by default. Windows nodes can also use SSH but historically they use WinRM as the connection transport. The supported connection plugins that can be used with Windows nodes are: * PowerShell Remoting over WinRM - psrp [https://docs.ansible.com/projects/ansible/latest/collections/ansible/builtin/psrp_connection.html#psrp-connection] * SSH - ssh [https://docs.an...")
  • 16:30, 6 August 2026 Kenneth talk contribs created page Copilot (Created page with "== Copilot CLI == 1. Install GitHub CLI Choose the command for your operating system: macOS: brew install gh Windows (Winget): winget install GitHub.cli Windows (Scoop): scoop install gh Linux (Ubuntu/Debian): sudo apt install gh Linux (Fedora/RHEL): sudo dnf install gh --- 2. Authenticate: gh auth login --- 3. Install the Copilot Extension: gh extension install github/gh-copilot --- 4. Update the Extension (Optional) gh extension upgrade gh-copilot...")
  • 03:38, 4 August 2026 Kenneth talk contribs created page Systemctl (Created page with "== systemctl == systemctl stop [service] systemctl start [service] systemctl restart [service] systemctl disable [service] systemctl enable [service] systemctl daemon-reload journalctl -xe jounralctl -u [service]")
  • 03:28, 4 August 2026 Kenneth talk contribs created page Python/pre-commit (Created page with "<pre> The pre-commit hooks (black, isort, flake8, EOF/whitespace, no-CRLF) found issues in the files this PR changed. Install the hook once so it runs automatically on every commit: pip install pre-commit pre-commit install # from the repo root Generate sample pre-commit config: pre-commit sample-config > .pre-commit-config.yaml Fix the current changes: pre-commit run # checks staged files (auto-fixes...")
  • 06:59, 3 August 2026 Kenneth talk contribs created page CentOS/10 (Created page with "See AlmaLinux")
  • 06:59, 3 August 2026 Kenneth talk contribs created page CentOS/AlmaLinux (Created page with "See AlmaLinux")
  • 06:59, 3 August 2026 Kenneth talk contribs created page AlmaLinux (Created page with "== AlmaLinux ==")
  • 06:58, 3 August 2026 Kenneth talk contribs created page AlmaOS (Created page with "See AlmaLinux")
  • 05:30, 3 August 2026 Kenneth talk contribs created page CentOS/Dirty RHEL7 to CentOS8 (Created page with "== Unsupported RHEL7 to CentOS8 Upgrade == <markdown> # RHEL 7.9 to CentOS 8.5.2111 Migration Runbook for VMs > **Important warning** > > This is an unsupported in-place conversion path. Use this only on VMs where you have a working snapshot, console access, and a recovery plan. A fresh install of AlmaLinux, Rocky Linux, RHEL, or another supported EL distribution is generally safer for production systems. ## Scope This runbook captures the field-tested steps used to...")
  • 03:02, 3 August 2026 Kenneth talk contribs created page CentOS/7/Upgrade to Centos 8 (Created page with "Both distributions are end-of-life: * CentOS 8 reached EOL on December 31, 2021. * CentOS 7 reached EOL on June 30, 2024 <pre> # Update CentOS 7 yum update -y reboot # Install upgrade tools yum install -y epel-release yum-utils rpmconf dnf # Resolve config conflicts rpmconf -a # Remove orphaned packages package-cleanup --leaves package-cleanup --orphans # Remove yum dnf remove -y yum yum-metadata-parser rm -rf /etc/yum # Install CentOS 8 repository packages from v...")
  • 22:01, 2 August 2026 Kenneth talk contribs created page Python3.14 (Created page with "== Ubuntu Python 3.14 == See Ubuntu/Python/3.14")
  • 08:52, 1 August 2026 Kenneth talk contribs created page USA Territories (Created page with "Insular Areas of the United States and Freely Associated States <ref>https://www.doi.gov/library/internet/insular</ref> * American Samoa * Guam * Republic of the Marshall Islands * Federated States of Micronesia * Commonwealth of the Northern Mariana Islands * Republic of Palau * Puerto Rico * U.S. Virgin Islands")
  • 00:15, 1 August 2026 Kenneth talk contribs created page CentOS/8/Python 3.8 (Created page with "== Python 3.8 with or without OpenSSL 3 == <markdown> # Python 3.8 + OpenSSL 3.x on CentOS 8 This guide installs: - OpenSSL 3.x in `/opt/openssl-3` - Python 3.8 in `/opt/python3.8` - Modern TLS support for Python `ssl`, `urllib`, `requests`, and `aiohttp` - Isolation from the OS Python and OpenSSL versions This approach is recommended for environments that use: - Corporate TLS inspection appliances - Internal Artifactory servers - Self-signed enterprise CAs - Modern...")
  • 08:50, 31 July 2026 Kenneth talk contribs created page CentOS/8/Yum (Created page with "=== /etc/yum.repos.d/centos8.repo === ls -l /etc/pki/rpm-gpg rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-8 rpm -qa gpg-pubkey* | grep -i f4a80eb5 curl https://vault.centos.org/RPM-GPG-KEY-CentOS-7 -o /tmp/RPM-GPG-KEY-CentOS-8 curl --fail -s https://vault.centos.org/RPM-GPG-KEY-CentOS-7 -o /tmp/RPM-GPG-KEY-CentOS-8 if [ $? -ne 0 ] ; then echo "FAIL" ; fi rpm --import /tmp/RPM-GPG-KEY-CentOS-8 rpm -qa gpg-pubkey* | grep -i f4a80eb5 cat > /etc/yum.repo...")
  • 08:38, 31 July 2026 Kenneth talk contribs created page CentOS/7/Yum (Created page with "== /etc/yum.repos.d/centos7.repo == ls -l /etc/pki/rpm-gpg rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 rpm -qa gpg-pubkey* | grep -i f4a80eb5 curl --fail -s -o /tmp/RPM-GPG-KEY-CentOS-7 \ https://vault.centos.org/RPM-GPG-KEY-CentOS-7 rpm --import /tmp/RPM-GPG-KEY-CentOS-7 <pre> [base] name=CentOS-$releasever - Base baseurl=http://vault.centos.org/7.9.2009/os/$basearch/ gpgcheck=1 enabled=1 [updates] name=CentOS-$releasever - Updates baseurl=http://va...")
  • 18:05, 27 July 2026 Kenneth talk contribs created page CentOS/8/Python 3.14 (Created page with "== Python 3.14 with OpenSSL 3 == # Python 3.14 + OpenSSL 3.x on CentOS 8 This guide installs: - OpenSSL 3.x in `/opt/openssl-3` - Python 3.14 in `/opt/python3.14` - Modern TLS support for Python `ssl`, `urllib`, `requests`, and `aiohttp` - Isolation from the OS Python and OpenSSL versions This approach is recommended for environments that use: - Corporate TLS inspection appliances - Internal Artifactory servers - Self-signed enterprise CAs - Modern TLS requirements...")
  • 18:02, 27 July 2026 Kenneth talk contribs created page CentOS/7/Python 3.14 (Created page with "== Python 3.14 on CentOS 7 == === Dependencies === <pre> sudo yum groupinstall "Development Tools" -y sudo yum install -y \ gcc \ gcc-c++ \ make \ wget \ openssl-devel \ bzip2-devel \ libffi-devel \ zlib-devel \ readline-devel \ sqlite-devel \ xz-devel \ tk-devel \ gdbm-devel \ ncurses-devel </pre> === Download === <pre> cd /usr/src sudo wget https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz sudo tar...")
  • 23:06, 26 July 2026 Kenneth talk contribs created page Games/Hand and Foot (Redirected page to Hand and Foot) Tag: New redirect
  • 23:04, 26 July 2026 Kenneth talk contribs created page Cards (Created page with "X")
  • 23:03, 26 July 2026 Kenneth talk contribs created page Hand and Foot (Created page with "X")
  • 21:58, 24 July 2026 Kenneth talk contribs created page Dnf (Created page with "== DNF == Dandified YUM (DNF) is the default software package manager for Fedora, Red Hat Enterprise Linux (RHEL), and related distributions == Upgrade == dnf upgrade === update alias === 'update' appears to be an alias for upgrade ``` $ dnf update --help usage: dnf upgrade ``` == pin package == dependency: # sudo dnf install -y python2-dnf-plugin-versionlock # older rhel versions sudo dnf install -y python3-dnf-plugin-versionlock sudo dnf install -y dnf-pl...")
  • 20:41, 23 July 2026 Kenneth talk contribs created page Linux/git (Created page with "See Git")
  • 22:00, 22 July 2026 Kenneth talk contribs created page Windows/Service (Created page with "== Delete Service == sc delete [name]")
  • 19:49, 20 July 2026 Kenneth talk contribs created page Wireshark (Created page with "Targeted Traffic: (Filters traffic sent to the target) ip.dst == [Target-IP] Traffic To and From: (Shows both incoming and outgoing traffic for the device) ip.addr == [Target-IP] Traffic Originating From: (Shows traffic sent from the device) ip.src == [Target-IP]")
  • 09:59, 20 July 2026 Kenneth talk contribs created page GitHub/rerun (Created page with "== auto-rerun == ref: https://github.com/orgs/community/discussions/67654#discussioncomment-8038649 === test.yml === <pre> test.yml: on: push jobs: fail: runs-on: ubuntu-latest steps: - run: false re-run: needs: fail if: failure() && fromJSON(github.run_attempt) < 3 runs-on: ubuntu-latest steps: - env: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ github.token }} GH_DEBUG: api run: gh wor...")
  • 00:58, 19 July 2026 Kenneth talk contribs created page Palworld (Created page with "== Steam Server == <pre> sudo apt update && sudo apt upgrade -y ; \ sudo apt install software-properties-common -y sudo add-apt-repository -y multiverse ; \ sudo dpkg --add-architecture i386 ; \ sudo apt update && sudo apt install steamcmd -y sudo adduser steam sudo -i -u steam # or sudo -u steam -s ## as steam user ... ## as steam user ... ## as steam user ... screen -S pal echo "export PATH=$PATH:/usr/games" >> ~/.bashrc export PATH=$PATH:/usr/games mkdir PalS...")
  • 21:08, 18 July 2026 Kenneth talk contribs created page Linux/which (Created page with "== which == show where a command in path lives # which <exe>")
  • 21:08, 18 July 2026 Kenneth talk contribs created page Linux/where (Created page with "where is Windows, see linux/which")
  • 21:08, 18 July 2026 Kenneth talk contribs created page Windows/which (Created page with "Which is linux, see Windows/where")
  • 21:07, 18 July 2026 Kenneth talk contribs created page Windows/where (Created page with "== Show where command in path lives == == where in command shell == Command Shell: # where <exe> where gh C:\Program Files\GitHub CLI\gh.exe == powershell version == Powershell the 'where' has a different meaning, if you still want to use where, just append .exe where.exe gh Power Shell Version: # get-command <exe> <pre> PS CL\> get-command gh CommandType Name Version Source ----------- ----...")
  • 22:11, 14 July 2026 Kenneth talk contribs created page Windows/DNS (Created page with "== DNS Cache == ipconfig /displaydns == Flush DNS Cache == ipconfig /flushdns")
  • 22:15, 7 July 2026 Kenneth talk contribs created page Windows/Ping (Created page with "== Firewall Allow Ping == Add: netsh advfirewall firewall add rule name="Allow ICMPv4 Ping" protocol=icmpv4:8,any dir=in action=allow Verify netsh advfirewall firewall show rule name="Allow ICMPv4 Ping" Remove: netsh advfirewall firewall delete rule name="Allow ICMPv4 Ping" == Powershell Version == New-NetFirewallRule -DisplayName "Allow ICMPv4 Ping" ` -Direction Inbound ` -Protocol ICMPv4 ` -IcmpType 8 ` -Action Allow")
  • 07:00, 7 July 2026 Kenneth talk contribs created page Ntpq (Created page with "== ntpq -p == === Active Sync Time Source === # Look for the asterisk * in the first column, which identifies your currently selected active time source. # The reach column should ideally be 377 (octal), confirming the server has been successfully contacted over the last 8 polls. # The offset should be a very low number (typically under 100 milliseconds), showing how far off your clock is from the server. <pre> # ntpq -p remote r...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)