All public logs
Jump to navigation
Jump to search
Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50 ) (20 | 50 | 100 | 250 | 500)- 08:36, 6 November 2020 Busk talk contribs created page Sar (Created page with "``` sar -f /var/log/sa/sa$(date +%d -d yesterday) > sar.yesterday ```")
- 18:31, 5 November 2020 Busk talk contribs created page Snmptrap (Created page with "snmptrap -v 3 -n "" -a SHA -A mypassword -x AES -X mypassword -l authPriv -u traptest -e 0x8000000001020304 127.0.0.1 0 iso.3.6.1.6.3.1.1.5.2 /tmp/snmptrapd.conf ``` createUs...")
- 13:41, 4 November 2020 Busk talk contribs created page Rediscovering Namespaces - A journey understanding the benefits containerization (Created page with "# A History of Containers - https://blog.aquasec.com/a-brief-history-of-containers-from-1970s-chroot-to-docker-2016 - https://en.wikipedia.org/wiki/Monolithic_kernel # LXD -...")
- 22:47, 1 November 2020 Busk talk contribs created page Homer (Created page with "# Homer SIP - https://www.powerpbx.org/content/homer-voip-monitoring-install-guide-v1 - https://github.com/sipcapture/captagent/releases")
- 23:17, 27 October 2020 Busk talk contribs created page Tail (Created page with "``` tail -F my.log | awk '/line/ {++i;printf "\r%d",i}' ``` ``` #!/usr/bin/env bash set -e logfile=my.log match='Finished: SUCCESS' while true; do # tail -F -n 0 $logfile |...")
- 18:43, 27 October 2020 Busk talk contribs created page Zabbix agent2 (Created page with "``` zabbix_agent2 -t system.run['ls -l /'] ```")
- 20:45, 26 October 2020 Busk talk contribs created page Openssl (Created page with "# Extract cert and key ``` openssl pkcs12 -in domain.pfx -clcerts -nokeys -out domain.crt openssl pkcs12 -in domain.pfx -nocerts -nodes -out domain.key ``` # Update your...")
- 02:33, 21 October 2020 Busk talk contribs created page SIP (Created page with "- https://tools.kali.org/sniffingspoofing/sipp - https://github.com/SIPp/pysipp - https://github.com/SIPp/sipp - https://github.com/sipcapture/homer")
- 16:28, 18 October 2020 Busk talk contribs created page Microk8s on LXD (Created page with "# LXD issues with app armour https://blog.sleeplessbeastie.eu/2020/07/20/how-to-deal-with-missing-apparmor-profiles-for-microk8s-on-lxd/")
- 00:24, 13 October 2020 Busk talk contribs created page CoreDNS (Created page with "- https://coredns.io/plugins/acl/")
- 16:40, 10 October 2020 Busk talk contribs created page Dnsmasq TestNetwork (Created page with "# ip link add name j type bridge # ip link set j up lxc profile copy default jclients # Then edit eth0 like below ``` config: {} description: Test j dhcp clients devices:...")
- 11:55, 9 October 2020 Busk talk contribs created page Anycast DNS (Created page with "https://yetiops.net/posts/anycast-bgp/")
- 16:27, 7 October 2020 Busk talk contribs created page Salt OneLiners (Created page with "master.conf ``` file_roots: base: - /srv/salt ``` File ``` /srv/salt/files/nssm.exe ``` ``` sudo salt 'myid' cp.get_file salt://files/nssm.exe /tmp/ ```")
- 17:15, 5 October 2020 Busk talk contribs created page Windows Services (Created page with "sc create sensu-client start= delayed-auto binPath= c:\opt\sensu\bin\sensu-client.exe DisplayName= "Sensu Client" https://docs.sensu.io/sensu-core/1.2/platforms/sensu-on-micr...")
- 21:20, 28 September 2020 Busk talk contribs created page Logstash (Created page with "# Install - https://www.digitalocean.com/community/tutorials/how-to-install-elasticsearch-logstash-and-kibana-elastic-stack-on-ubuntu-16-04")
- 15:37, 24 September 2020 Busk talk contribs created page Kibana (Created page with "# Install - https://www.elastic.co/guide/en/kibana/current/deb.html")
- 21:59, 23 September 2020 Busk talk contribs created page Rsyslog (Created page with "Testing ``` logger --udp -n 10.x.x.52 test6 ``` tail ``` tail -f /var/log/loghost/rsyslog/* ``` /etc/rsyslog.conf ``` # /etc/rsyslog.conf configuration file for rsyslog # #...")
- 19:16, 15 September 2020 Busk talk contribs created page Dig (Created page with "# Simple Commands ``` dig +short google.com TXT @8.8.8.8 # test recursion ```")
- 18:14, 15 September 2020 Busk talk contribs created page Neurology (Created page with "# Gaba - https://www.ncbi.nlm.nih.gov/books/NBK11084/#:~:text=The%20predominant%20precursor%20for%20GABA,can%20also%20act%20as%20precursors.")
- 17:35, 31 August 2020 Busk talk contribs created page Ldapsearch (Created page with "``` ldapsearch # the command itself -LLL # just a particular way to display the results -H ldap://wspace.mydomain.com # the URL where the LDAP server listens -x # use simp...")
- 15:25, 31 August 2020 Busk talk contribs created page LDAP Proxy (Created page with "# OpenLDAP Proxy - https://doc.owncloud.com/server/admin_manual/configuration/ldap/ldap_proxy_cache_server_setup.html")
- 15:24, 31 August 2020 Busk talk contribs created page LDAP (Created page with "LDAP Proxy ")
- 01:08, 25 August 2020 Busk talk contribs created page Tshark (Created page with " ``` tshark -i eth0 -f "host 10.x.x.x and tcp port 80 or port 8080" -Y "http.request || http.response" ```")
- 23:48, 24 August 2020 Busk talk contribs created page NGINX Source IP (Created page with "https://serverfault.com/questions/439631/nginx-as-proxy-using-a-specific-source-ip ``` proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X...")
- 16:35, 21 August 2020 Busk talk contribs created page Windows CICD (Created page with "# Download Images - https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/")
- 14:18, 20 August 2020 Busk talk contribs created page Useradd (Created page with "# Create manually useradd -m -d /home/jebusk -s /bin/bash -c "Jeremy Busk" -U jebusk # Refs - https://www.tecmint.com/add-users-in-linux/")
- 18:56, 19 August 2020 Busk talk contribs created page F5 (Created page with "#BIG IP - Renew cert then - https://www.digicert.com/kb/ssl-certificate-installation-f5-big-ip.htm ``` Installing the SSL Certificate Launch the F5 BIGIP web GUI. Under Local...")
- 11:50, 14 August 2020 Busk talk contribs created page PXE Server (Create PXE Server to bootstrap hosts)
- 14:22, 13 August 2020 Busk talk contribs created page LXD From Scratch (Created page with "``` # sudo lxc network create lxdbr0 sudo lxc network set lxdbr0 ipv4.nat false sudo lxc network set lxdbr0 ipv6.nat false sudo lxc network set lxdbr0 ipv6.firewall false sud...")
- 19:22, 7 August 2020 Busk talk contribs created page LVM (Created page with "# Extend VM Guest disk drive https://ahelpme.com/linux/online-resize-of-a-root-ext4-file-system-increase-the-space/ ``` ```")
- 17:46, 4 August 2020 Busk talk contribs created page Python Client Server (Created page with "client.py ``` #!/usr/bin/env python3 import socket # create a socket object s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # get local machine name host = socket.ge...")
- 17:43, 4 August 2020 Busk talk contribs created page Python Examples (Created page with "- https://pymotw.com/2/socket/tcp.html")
- 17:37, 4 August 2020 Busk talk contribs moved page Windows Run App as Another User to Windows Run App as Different User without leaving a redirect
- 17:34, 4 August 2020 Busk talk contribs created page Windows Run App as Another User (Created page with "Hold Shift Down, right click app icon and then Run as different user")
- 16:52, 4 August 2020 Busk talk contribs created page Odroid (Created page with "# Oroid Images - https://wiki.odroid.com/odroid-c2/os_images/ubuntu/ubuntu")
- 13:44, 3 August 2020 Busk talk contribs created page Wireguard (Created page with "``` I recently discovered the awesome Wireguard VPN tunnel and I was sold. Wireguard is a simple, kernel-based, state-of-the-art VPN that also happens to be ridiculously fast...")
- 02:55, 31 July 2020 Busk talk contribs created page Raspberry Pi Wireless Access Point (Created page with "- https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/reference/configuration - https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/basic-ap-setup - https://w...")
- 20:47, 30 July 2020 Busk talk contribs created page Netapp (Created page with "# Python API/Interaction Resources - https://www.youtube.com/channel/UCJHw5QcQN-VTIXf9C3z39gQ")
- 19:28, 29 July 2020 Busk talk contribs created page DNSSEC (Created page with "# What Is? - https://www.cloudflare.com/dns/dnssec/how-dnssec-works/ # Linux - https://www.techrepublic.com/article/how-to-use-dns-over-tls-on-ubuntu-linux/ # Windows - http...")
- 17:07, 25 July 2020 Busk talk contribs created page Windows Licensing (Created page with "``` $Status = (Get-CimInstance -ClassName SoftwareLicensingProduct -Filter "Name like 'Windows%'" | where PartialProductKey).licensestatus If ($Status -ne 1) {Write-Host "Wind...")
- 05:45, 25 July 2020 Busk talk contribs created page Windows 10 Install (Created page with "https://forums.tomshardware.com/threads/cant-boot-from-m-2-nvme-ssd.3365143/ Disable CSM in bios to enable driver to be loaded from nvme")
- 00:10, 25 July 2020 Busk talk contribs created page Raspberry Pi (Created page with "- https://ubuntu.com/download/raspberry-pi")
- 05:04, 24 July 2020 Busk talk contribs created page NIC Issues in Linux (Created page with "https://askubuntu.com/questions/628217/use-of-predictable-network-interface-names-with-alternate-kernels sudo apt-get install biosdevname")
- 20:47, 23 July 2020 Busk talk contribs created page Zabbix Log Collection (Created page with "https://techexpert.tips/zabbix/zabbix-monitor-log-file-linux/")
- 23:25, 22 July 2020 Busk talk contribs created page LXD Cheat Sheet (Created page with "``` lxc launch ubuntu:18.04 example lxc launch images:centos/8 example8 sudo lxc config device add example tcp11000 proxy listen=tcp:0.0.0.0:11000 connect=tcp:127.0.0.1:80 sud...")
- 12:31, 21 July 2020 Busk talk contribs created page Salt Cheat Sheet (Created page with "- Shameless rip from - https://sites.google.com/site/mrxpalmeiras/saltstack/salt-cheat-sheet ``` Contents 1 BOOTSTRAP 2 SERVICES 3 TARGETING 4 KEY MANAGEMENT 5 SERVER DIAGN...")
- 15:50, 15 July 2020 Busk talk contribs created page CMD ss (Created page with "Shameless rip from https://www.cyberciti.biz/tips/linux-investigate-sockets-network-connections.html List currently established, closed, orphaned and waiting TCP sockets, ent...")
- 15:43, 15 July 2020 Busk talk contribs created page Intrusion Detection System (Created page with "# Linux best to use iproute2 and lsof for most of this ss/lsof ``` ss -o state established | grep 10 ``")
- 12:58, 14 July 2020 Busk talk contribs created page Zabbix Issues (Created page with " Solving the alert: Zabbix unreachable poller processes more than 75% busy https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/400962-solving-the-alert-zabbix-un...")
- 18:24, 6 July 2020 Busk talk contribs created page Ubuntu Developer Tools (Created page with " ``` apt-get install build-essential apt-get install autoconf automake gdb git libffi-dev zlib1g-dev libssl-dev ```")