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).
- 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...")