User contributions for Chubbard
Jump to navigation
Jump to search
23 March 2023
- 16:3616:36, 23 March 2023 diff hist +297 m Bash-confirm-binaries No edit summary current
- 16:3316:33, 23 March 2023 diff hist +757 m Bash-confirm-binaries No edit summary
- 08:4008:40, 23 March 2023 diff hist +803 N Bash-confirm-binaries Created page with "=== Simple function to confirm binaries exist before running scripts === <pre> #=== FUNCTION ================================================================ # NAME: verify_deps # DESCRIPTION: Check that all binary files are available to be used # PARAMETERS: None. This is standalone. Changes occur on case by case # RETURNS: none #=============================================================================== verify_deps() { # needed="xmllint..."
20 March 2023
- 15:5415:54, 20 March 2023 diff hist +6 m Bash aliases No edit summary
- 15:5315:53, 20 March 2023 diff hist +94 m Bash aliases No edit summary
- 15:0615:06, 20 March 2023 diff hist +49 N I Will Fear No Evil:Terms of Service Created page with "Simple. Dont be a prick or I will boot your ass."
- 14:2914:29, 20 March 2023 diff hist +43 N User:Pmorris Created page with "User Peter Morris passed away on 02-24-2023"
- 14:2514:25, 20 March 2023 diff hist +41 N Category:RAID Created page with "Anything dealing with RAID or RAID types." current
- 14:2414:24, 20 March 2023 diff hist +298 N Bash colors Created page with "Use colors within scripts <pre> for (( i = 30; i < 38; i++ )); do echo -e "\033[0;"$i"m Normal: (0;$i); \033[1;"$i"m Light: (1;$i)"; done </pre> Within the script: Where numb..."
2 November 2022
- 09:1409:14, 2 November 2022 diff hist +103 m Mac-utils-and-howto No edit summary current
31 October 2022
- 21:2221:22, 31 October 2022 diff hist +642 N Bash inodes Created page with "== Find inodes used == If you run out of inodes, it is a pita to deal with unexpectedly. In general it should not come as a suprise when this happens on servers that have man..."
28 October 2022
- 19:0019:00, 28 October 2022 diff hist +520 m Bash variables No edit summary
26 October 2022
- 12:2912:29, 26 October 2022 diff hist +102 m Bash variables →Finding defined variables
- 12:2712:27, 26 October 2022 diff hist +142 m Bash variables No edit summary
- 12:2612:26, 26 October 2022 diff hist +504 N Bash variables Created page with "== Finding defined variables == Assuming you have done something like foo="bar" at your bash prompt it is not always clear how to echo ALL the defined variables back from your..."
20 September 2022
- 20:0020:00, 20 September 2022 diff hist +676 N Bash-loops Created page with "=== Interesting bash loop constructs I have found === <pre> cat interesting_loop.sh #!/bin/bash _admin_ip="202.54.1.33|MUM_VPN_GATEWAY 23.1.2.3|DEL_VPN_GATEWAY 13.1.2.3|SG_V..." current
24 August 2022
- 11:2211:22, 24 August 2022 diff hist +13 m Bash sed No edit summary
- 11:2211:22, 24 August 2022 diff hist +187 m Bash sed No edit summary
19 August 2022
- 09:2909:29, 19 August 2022 diff hist +2 m Prometheus No edit summary current
- 09:2809:28, 19 August 2022 diff hist +561 m Prometheus No edit summary
18 August 2022
- 15:0115:01, 18 August 2022 diff hist +400 N Red Hat Created page with "== Red Hat Specific things == Adding in a user that has wheel contexts <pre> as user blah: id uid=1001(blah) gid=1001(blah) groups=1001(blah),10(wheel) context=unconfined_u:..."
- 12:1312:13, 18 August 2022 diff hist +374 m Nginx-ingress-controller No edit summary current
- 12:1112:11, 18 August 2022 diff hist +147 m Nginx-ingress-controller No edit summary
- 12:0912:09, 18 August 2022 diff hist +2,349 N Nginx-ingress-controller Created page with "== Working with nginx ingress controls == The Nginx ingress controller for kubernetes can be an amazing PITA. If we work with nginx as an application that only does the ingre..."
- 11:5711:57, 18 August 2022 diff hist +78 N Category:Kubernetes Created page with "If it is kubernetes or kube related at all, this is a good spot to link it to." current
- 11:5711:57, 18 August 2022 diff hist +484 N Prometheus Created page with "== Notes on working with Prometheus via ArgoCD == Currently using ArgoCD and the kube prometheus stack installation there is a bug. This notes the fix [https://github.com/pro..."
15 August 2022
- 08:5008:50, 15 August 2022 diff hist +166 m Bash-URL-decode No edit summary current
- 08:4908:49, 15 August 2022 diff hist +277 N Bash-URL-decode Created page with "=== URL decode in bash === <pre> #!/bin/bash function urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; } urldecode "$(cat $1)" </pre> [https://stackoverflow.com/questions/6..."
21 June 2022
- 14:3214:32, 21 June 2022 diff hist +116 m Containers No edit summary
- 14:3114:31, 21 June 2022 diff hist +37 N Category:Container Created page with "Landing category for container pages." current
- 14:3014:30, 21 June 2022 diff hist +71 N Containers Created page with "=== Basic howtos testing in lab === k3d k3s Category: Container "
14 June 2022
- 15:0115:01, 14 June 2022 diff hist +121 m Bash sed No edit summary
- 13:0313:03, 14 June 2022 diff hist +170 N Bash sed Created page with "==== Useful sed commands ==== cat foo | sed "1,/^stringMatch/d" * Will ignore all before string match until EOF * stringMatch must be start of line (^) Category:bash"
- 09:3109:31, 14 June 2022 diff hist +92 N Bash conversions Created page with "==== Convert formats ==== yq is a YAML converter... yq -o=json test.yml Category:bash"
9 June 2022
- 12:0812:08, 9 June 2022 diff hist +137 N USB clean Created page with "dd if=/dev/zero of=/dev/sdb bs=1M Of course replace the sdb with the correct USB drive and make sure it’s umount’d before you dd it"
2 June 2022
- 15:2715:27, 2 June 2022 diff hist −21 m Bash loop No edit summary
- 15:2515:25, 2 June 2022 diff hist +598 N Bash loop Created page with "<pre> #!/bin/bash _admin_ip="202.54.1.33|MUM_VPN_GATEWAY 23.1.2.3|DEL_VPN_GATEWAY 13.1.2.3|SG_VPN_GATEWAY" for e in $_admin_ip do echo allow from "${e%%|*}" to any port 2..."
28 April 2022
- 18:0818:08, 28 April 2022 diff hist +251 N Bash aliases Created page with "Just a list of some useful aliases <pre> alias scpresume='rsync --partial --progress ' FOO=1; while $FOO -eq 1 ; do date ; scpresume -r ./Uncharted_2022 chubbard@50.34...."
29 March 2022
- 09:2409:24, 29 March 2022 diff hist +34 m Mac Notes No edit summary
- 09:2309:23, 29 March 2022 diff hist +218 m Mac Notes No edit summary
15 March 2022
- 15:0415:04, 15 March 2022 diff hist +101 m Bash-interesting-command-examples No edit summary
- 15:0315:03, 15 March 2022 diff hist +235 N Bash-interesting-command-examples Created page with "====Interesting one-liners==== * Find all drives and ignore loop devices <pre> root@kvm03:/var/log# lsblk | grep -v "loop\|NAME" | grep "^[a-z]\|^[A-Z]" | awk '{print $1}' sda..."
- 14:3614:36, 15 March 2022 diff hist +915 N Snmp-differentChecks Created page with "==== Using MIBS ==== /usr/bin/snmpbulkwalk -v2c -c public -OQUs -m Q-BRIDGE-MIB -M /opt/observium/mibs udp:asus03.iwillfearnoevil.com:161 /usr/bin/snmpbulkwalk -v2c -c public..." current
25 February 2022
- 21:4121:41, 25 February 2022 diff hist +513 m Ffmpeg notes No edit summary
21 February 2022
- 15:3715:37, 21 February 2022 diff hist +15 m Bash skel →Basic Skeleton to build scripts from
- 15:3415:34, 21 February 2022 diff hist +181 m Bash skel No edit summary
17 February 2022
- 12:1112:11, 17 February 2022 diff hist +338 m Zoneminder-notes No edit summary current
- 11:2711:27, 17 February 2022 diff hist +240 m Zoneminder-notes No edit summary
14 February 2022
- 10:5010:50, 14 February 2022 diff hist +3 m Zoneminder-notes No edit summary
- 10:4910:49, 14 February 2022 diff hist +138 m Zoneminder-notes No edit summary