Main public logs

Jump to navigation Jump to search

Combined display of all available logs of wiki.TerraBase.info. 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)
  • 20:53, 4 August 2026 Root talk contribs created page Xterm js in Proxmox and Debian (Created page with "Hello") Tag: Visual edit
  • 00:28, 3 August 2026 Root talk contribs created page Changing the ID of a Storage Source in Proxmox (Created page with "How to change the name of a ID for a Proxmox BackUp Server Storage Item / Location: You don't. Why? Who knows. Is there a work around? Yes! === Work Around === <syntaxhighlight lang="text"> OLD='WhatEverSourceName' NEW='WhatEverTargetName' python3 - "$OLD" "$NEW" <<'PY' import shutil import sys from datetime import datetime from pathlib import Path old = sys.argv[1] new = sys.argv[2] cfg = Path("/etc/pve/storage.cfg") secret_dir = Path("/etc/pve/priv/storage") t...") Tag: Visual edit
  • 17:02, 27 July 2026 Root talk contribs created page OpenVPN and Clients and Windows (Created page with "Nothing ever works like one wants it to. Take for instance a client connecting into an OpenVPN server. Communication back to the client? Nah! Who needs that. In the case of Windows, it isn't OpenVPN's fault. If you can't ping from a VPN Server to a Windows Client, try this script on Windows;<syntaxhighlight lang="text">pktmon stop 2>$null pktmon filter remove pktmon filter add "Physical-IP-Ping" -t ICMP -i 192.168.2.51 pktmon filter add "VPN-IP-Ping" -t ICMP -i 17...") Tag: Visual edit
  • 16:57, 30 June 2026 Root talk contribs created page Windows Remote Desktop Fix 2026 (Created page with "reg add "HKLM\Software\Policies\Microsoft\Windows NT\Terminal Services\Client" /v RedirectionWarningDialogVersion /t REG_DWORD /d 1 /f") Tag: Visual edit
  • 01:41, 29 June 2026 Root talk contribs created page OpenWRT Boot Times Affected by WiFi (Created page with "f") Tag: Visual edit
  • 21:56, 28 June 2026 Root talk contribs created page OpenWRT and Copying the OS (Created page with "...gotta Linksys WRT1900 series or WRT32X or another Router that has 'Dual Boot Partitions' and want to do a 'bare metal copy' from one MTD 'Partition' to another? === WRT32X Example === <code>mtd dump ubi > /tmp/sda1/mtd6-ubi.bin</code> <code>mtd erase rootfs2 && mtd write /tmp/sda1/mtd6-ubi.bin rootfs2 && sync</code>") Tag: Visual edit
  • 18:09, 28 June 2026 Root talk contribs created page DDNS Monitoring (Created page with "...wanna see of DDNS is working between NAMED / BIND and OpenWRT's DDNS Service (Scripts)? On the NAMED / BIND Server for monitoring Network Traffic related to DDNS (requires setting up appropriate logging in named.conf, not covered here): <code>tail -n0 -F /WhatEverPath/WhatEverFileName.log 2>/dev/null | grep --line-buffered -Ei 'signer "ddns" approved|update .*approved|updating zone|adding an RR|deleting rrset|BADKEY|BADSIG|BADTIME|NOTAUTH|REFUSED|denied'</code> On t...") Tag: Visual edit
  • 18:57, 25 June 2026 Root talk contribs created page Webmin and the Standard Module Choice (Created page with "Have you ever woken up and wondered why people that are so smart can make such incredibly stupid choices? ==== Scenario ==== Webmin installed on OpenWRT with no "Standard module" choice from the Webmin Modules Form. Apparently that 'feature' / choice was removed a while ago with no consideration for "Generic Linux" installs. Cool. NOT! ==== Solution ==== And the code that'll do everything automatically;<syntaxhighlight lang="text"> WEBMIN_CONF="/etc/webmin" WEBMIN...") Tag: Visual edit
  • 18:55, 19 June 2026 Root talk contribs created page Microsoft Account EVIL (Created page with "...have that urge to track down the people at Microsoft that have messed up Windows 11, and made it infuriatingly impossible to get rid of sign ins? Curb your anger instead and just solve the problem with the below "Thor's Hammer";<syntaxhighlight lang="text"> # THOR HAMMER: remove Microsoft cloud-account identity caches from all local profiles. # Run as Administrator. Reboot happens at the end. $ErrorActionPreference = "SilentlyContinue" # Kill Microsoft identity/clo...") Tag: Visual edit
  • 16:34, 19 June 2026 Root talk contribs created page PPTPD and Insanity (Created page with "Instead of removing PPTPD or PoPToP, OpenWRT developers have instead decided to take the tact of making one lose their mind. How? By inserting code into the /etc/init.d/pptpd initialization script that guarantees the PPTPD service will never work. Evidence is below; /etc/init.d/pptpd with bogus insanity code;<syntaxhighlight lang="text"> #!/bin/sh /etc/rc.common # Copyright (C) 2015 OpenWrt.org START=60 USE_PROCD=1 BIN=/usr/sbin/pptpd CONFIG=/var/etc/pptpd.conf CHA...") Tag: Visual edit
  • 22:52, 3 June 2026 Root talk contribs created page Database Uploads for WordPress with PHP (Created page with "...wanna import a big database file for WordPress using phpMyAdmin? Good luck. The default settings PHP settings in php.ini will likely prevent that. Solution?") Tag: Visual edit
  • 00:52, 17 May 2026 Root talk contribs created page RACADM on Proxmox and Debian (Created page with "RACADM on Proxmox 9.1.9 and Debian 13;<syntaxhighlight lang="text"> echo "=== Base Debian dependencies first ===" apt install -y ca-certificates wget gnupg libargtable2-0 echo echo "=== Dell OpenManage repo key ===" mkdir -p /etc/apt/keyrings wget -O /tmp/dell-openmanage.asc https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc gpg --dearmor --yes -o /etc/apt/keyrings/linux.dell.com.gpg /tmp/dell-openmanage.asc echo echo "=== Dell OpenManage 11.1.0.0 Jammy rep...") Tag: Visual edit
  • 18:44, 11 May 2026 Root talk contribs created page Dell OpenManage on Proxmox and Debian (Created page with "Need OpenManage on a Dell Server running Proxmox / Debian? Below is a script to accomplish this objective for older Dell Servers (R620, R730xd, etc.). This is for OpenManage Server Adminnistrator, NOT OpenManage Enterprise. === Credit Where Credit is Due === All credit to this person: https://forum.proxmox.com/members/ajrowe5317.327004/ Original Article / Web Page: https://forum.proxmox.com/threads/dell-openmanage-installation-on-proxmox-9-with-debian-13.170415/ ===...") Tag: Visual edit
  • 17:04, 11 May 2026 Root talk contribs created page DNS Commands for Windows (Created page with "...believe it or not, Microsoft actually has a set of commands for DNS. Although they're threatening to take it way, with no real replacement; dnscmd localhost /recorddelete XYZ.com SEM A /f dnscmd localhost /recordadd    XYZ.com SEM A 96.77.203.194 dnscmd localhost /zonewriteback XYZ.com dnscmd localhost /reload XYZ.com dnscmd localhost /zoneresetsecondaries XYZ.com /SecureList 192.168.2.1 /NotifyList 192.168.2.1 dnscmd . /recordadd XYZ.NET _acme-challenge NS A...") Tag: Visual edit
  • 00:39, 21 April 2026 Root talk contribs created page Bricks and Advanced Themer for WordPress (Created page with "...not sure what to title this one. It is born of frustration though. Certainly Advanced Themer helps with Bricks. No doubt. But it sure seems to add some tricks that are designed to raise blood pressures to heart attack levels. Let's just dive right in. A 'learned counter trick', is to have a base install of Bricks, without Advanced Themer, to see where something is without Advanced Themer. === Bricks Tricks Created by Advanced Themer === ==== What is the ID of...") Tag: Visual edit
  • 14:41, 15 April 2026 Root talk contribs created page Bricks for WordPress has an Issue (Created page with "...you have a bug in the way a background image is inserted into an Element (DIV, SPAN, etc.).  You need to quote the URL just in case. Example, you guys do this as a CSS directive: <code>background-image: url(<nowiki>https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg)</nowiki></code> And Elementor does this: <code>background-image: url("<nowiki>https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg</nowiki>")</code> Can you guess which one work...") Tag: Visual edit
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)