All public logs
Jump to navigation
Jump to search
Combined display of all available logs of I Will Fear No Evil. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 13:26, 29 March 2023 Chubbard talk contribs created page Category:ImageMagick (Created page with "Stuff I keep forgetting from the ImageMagick utilities.. https://imagemagick.org/")
- 13:25, 29 March 2023 Chubbard talk contribs created page Imagemagick (Created page with "=== Various commands for ImageMagick === Convert all PNG to JPG <pre> for x in `ls *.png` ; do convert "$x" "${x%.*}.jpg" ; done </pre> Appending an image to another image (pulled from my wallpaper changer code <pre> export BG_COLOR=black export FIN_IMAGE1=random.jpg export SPAN_SIZE_0=1024x768 convert "${FIN_IMAGE1}" -gravity "${GRAVITY_SPAN}" -background ${BG_COLOR} -resize ${SPAN_SIZE_0} -extent ${SPAN_SIZE_0} +append ${PWD}/background.jpg </pre> Category:ImageM...")
- 11:11, 29 March 2023 Chubbard talk contribs created page Category:Handbrake (Created page with "Just a catchall for all Handbrake related commands and gotchas.")
- 11:10, 29 March 2023 Chubbard talk contribs created page Handbrake (Created page with "=== Landing page with Handbrake examples === <pre> HandBrakeCLI -i /opt/arm/media/raw/Ghostbusters -o '/tmp/Ghostbusters_2014.mkv' "H.265 VCN 1080p" --subtitle scan -F --subtitle-burned --audio-lang-list eng --all-audio </pre> Category:Handbrake")
- 15:38, 23 March 2023 Chubbard talk contribs created page I Will Fear No Evil:Privacy policy (Created page with "My policy is dont be a dick. If you act like a jackass I will boot and ban you.")
- 15:38, 23 March 2023 Chubbard talk contribs created page I Will Fear No Evil:About (Created page with "Just a wiki that I use to save notes and snippets that I find useful or forget a lot.")
- 15:38, 23 March 2023 Chubbard talk contribs created page I Will Fear No Evil:General disclaimer (Created page with "My disclaimer is that this site is designed for me. If some random person finds something that is not right on here and it breaks your system well you did not do your own homework. These are notes and reminders that I find useful for myself. YMMV.")
- 07:40, 23 March 2023 Chubbard talk contribs created page 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...")
- 14:06, 20 March 2023 Chubbard talk contribs created page I Will Fear No Evil:Terms of Service (Created page with "Simple. Dont be a prick or I will boot your ass.")
- 13:29, 20 March 2023 Chubbard talk contribs created page User:Pmorris (Created page with "User Peter Morris passed away on 02-24-2023")
- 13:25, 20 March 2023 Chubbard talk contribs created page Category:RAID (Created page with "Anything dealing with RAID or RAID types.")
- 13:24, 20 March 2023 Chubbard talk contribs created page 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...")
- 20:22, 31 October 2022 Chubbard talk contribs created page 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...")
- 11:26, 26 October 2022 Chubbard talk contribs created page 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...")
- 19:00, 20 September 2022 Chubbard talk contribs created page 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...")
- 14:02, 18 August 2022 Chubbard talk contribs created page Category:RedHat (Created page with "All RHEL specific pages go here.")
- 14:01, 18 August 2022 Chubbard talk contribs created page 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:...")
- 11:09, 18 August 2022 Chubbard talk contribs created page 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...")
- 10:57, 18 August 2022 Chubbard talk contribs created page Category:Kubernetes (Created page with "If it is kubernetes or kube related at all, this is a good spot to link it to.")
- 10:57, 18 August 2022 Chubbard talk contribs created page 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...")
- 07:49, 15 August 2022 Chubbard talk contribs created page 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...")
- 13:31, 21 June 2022 Chubbard talk contribs created page Category:Container (Created page with "Landing category for container pages.")
- 13:30, 21 June 2022 Chubbard talk contribs created page Containers (Created page with "=== Basic howtos testing in lab === k3d k3s Category: Container ")
- 12:03, 14 June 2022 Chubbard talk contribs created page 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")
- 08:31, 14 June 2022 Chubbard talk contribs created page Bash converter (Created page with "==== Convert formats ==== yq is a YAML converter... yq -o=json test.yml Category:bash")
- 11:08, 9 June 2022 Chubbard talk contribs created page 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")
- 14:25, 2 June 2022 Chubbard talk contribs created page 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...")
- 17:08, 28 April 2022 Chubbard talk contribs created page 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....")
- 14:03, 15 March 2022 Chubbard talk contribs created page 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...")
- 13:36, 15 March 2022 Chubbard talk contribs created page 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...")
- 12:58, 12 February 2022 Chubbard talk contribs created page Apt notes (Created page with "===== Apt notes ===== holding package <pre> $ sudo apt-mark hold package-name $ sudo apt-mark hold mariadb-server </pre> show held packages <pre> $ apt-mark showhold </pre>...")
- 11:11, 7 February 2022 Chubbard talk contribs created page Gitalb api (Created page with "===== Basic API Calls for Gitlab ===== <pre> curl -L "https://gitlab.iwillfearnoevil.com/api/v4/projects" | jq '.' Partial return: { "id": 17, "description": "Find...")
- 11:10, 7 February 2022 Chubbard talk contribs created page Category:Gitlab (Created page with "All gitlab specific stuff goes in here")
- 08:48, 7 February 2022 Chubbard talk contribs created page Bash skel (Created page with "==== Basic Skeleton to build scripts from ==== <pre> #!/bin/bash - #=============================================================================== # # FILE: filename...")
- 10:01, 4 February 2022 Chubbard talk contribs created page Nms-notes (Created page with "Notes specific to the NMS I am writing ===== Daemon controllers via web interface ===== * [http://larvel01:8002/shell/status| Status the shellPoller daemon] * [http://larvel...")
- 09:50, 4 February 2022 Chubbard talk contribs created page Git notes (Created page with "Change git remote: With or without ssh keys added to your user account.. <pre> git remote set-url origin git@gitlab01.iwillfearnoevil.com:monitoring/nmsui.git or: git remote...")
- 15:50, 3 February 2022 Chubbard talk contribs created page Gitalb gotchas (Created page with " [https://sleeplessbeastie.eu/2020/06/29/how-to-enable-gitlab-container-registry/| Source Notes] <pre> Enable GitLab Container Registry on an instance running HAProxy. Edit...")
- 11:22, 27 January 2022 Pmorris talk contribs moved page Pramreset to Pram reset
- 11:21, 27 January 2022 Pmorris talk contribs created page Pramreset (Created page with "Having strange issues with apps launching or time/date getting skewed ? PRAM reset! Apple stores all sorts of odd little config stuff like monitor placement and whatnot insi...")
- 18:18, 24 January 2022 Chubbard talk contribs created page Category:Ubuntu (Created page with "Random Ubuntu pages")
- 18:12, 24 January 2022 Chubbard talk contribs created page Ubuntu20 (Created page with "Some gotchas when dealing with Ubuntu 20.. Adding static IP address with a bridge - /etc/netplan/01-netplan.yaml <pre> network: version: 2 renderer: networkd ethernets...")
- 08:47, 19 January 2022 Chubbard talk contribs created page Vi notes (Created page with "Notes on the oddball stuff I keep forgetting in vi.. * Find and replace: <pre> :%s/search_string/replacement_string/g </pre> Category:Vi")
- 14:22, 12 January 2022 Chubbard talk contribs created page Category:Mac (Created page with "If it is something Mac specific, it should end up here.")
- 14:21, 12 January 2022 Chubbard talk contribs created page Mac-utils-and-howto (Created page with "Drop all your Mac info here so it can be found later Find what DNS server you are using on the Mac <pre> scutil --dns </pre> Find ONLY the namesevers <pre> scutil --dns | gr...")
- 14:19, 12 January 2022 Chubbard talk contribs created page Category:Psql (Created page with "Catchall category for all Postgres pages.")
- 10:02, 12 January 2022 Chubbard talk contribs created page Bash-timers (Created page with "Simplest way to get a timer on something that does not have a builtin timeout system [https://serverfault.com/questions/361464/is-it-possible-to-set-a-timeout-on-openssls-s-c...")
- 09:29, 5 January 2022 Chubbard talk contribs created page Psql notes (Created page with "* Select new database via cli <pre>\c <DB> </pre> Category:psql")
- 11:02, 21 December 2021 Chubbard talk contribs created page Mac Notes (Created page with " Mac equiv of groupmod <pre> sudo dseditgroup -o edit -a geoff -t user wheel </pre>")
- 17:26, 20 December 2021 Chubbard talk contribs created page Category:Ffmpeg (Created page with "Anything dealing with ffmpeg transcoding or playback")
- 17:25, 20 December 2021 Chubbard talk contribs created page Ffmpeg notes (Created page with "ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV. <pre> ffmpeg -i ./foo.mp4 -c:v libx264 -crf 24 -pix_fmt yuv420p -tune film -c:a aac -b:a 19...")