User contributions for Chubbard
Jump to navigation
Jump to search
25 January 2022
- 19:5019:50, 25 January 2022 diff hist +177 m Bash-common-checks No edit summary
24 January 2022
- 19:1819:18, 24 January 2022 diff hist +19 N Category:Ubuntu Created page with "Random Ubuntu pages" current
- 19:1819:18, 24 January 2022 diff hist +22 m Ubuntu20 No edit summary
- 19:1219:12, 24 January 2022 diff hist +610 N 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..."
21 January 2022
- 17:2817:28, 21 January 2022 diff hist +41 m Snmp-iwillfearnoevil No edit summary current
- 17:2517:25, 21 January 2022 diff hist +120 m Snmp-iwillfearnoevil →Example manual trap
- 17:2417:24, 21 January 2022 diff hist +41 m Snmp-iwillfearnoevil →NMS testing using new OID std
- 17:2217:22, 21 January 2022 diff hist +1,319 m Snmp-iwillfearnoevil No edit summary
- 17:1517:15, 21 January 2022 diff hist −57 m Snmp-iwillfearnoevil No edit summary
- 17:1317:13, 21 January 2022 diff hist +3,200 m Snmp-iwillfearnoevil No edit summary
19 January 2022
- 09:4709:47, 19 January 2022 diff hist +145 N 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" current
12 January 2022
- 15:2415:24, 12 January 2022 diff hist +112 m Mac-utils-and-howto No edit summary
- 15:2215:22, 12 January 2022 diff hist +55 N Category:Mac Created page with "If it is something Mac specific, it should end up here." current
- 15:2115:21, 12 January 2022 diff hist +227 N 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..."
- 15:1915:19, 12 January 2022 diff hist +41 N Category:Psql Created page with "Catchall category for all Postgres pages." current
- 11:0211:02, 12 January 2022 diff hist +517 N 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..." current
5 January 2022
- 10:3910:39, 5 January 2022 diff hist +29 m Psql notes No edit summary current
- 10:2910:29, 5 January 2022 diff hist +71 N Psql notes Created page with "* Select new database via cli <pre>\c <DB> </pre> Category:psql"
23 December 2021
- 14:3014:30, 23 December 2021 diff hist 0 m Ffmpeg notes No edit summary
- 14:3014:30, 23 December 2021 diff hist +180 Ffmpeg notes No edit summary
21 December 2021
- 12:0212:02, 21 December 2021 diff hist +61 m Mac Notes No edit summary
- 12:0212:02, 21 December 2021 diff hist +84 N Mac Notes Created page with " Mac equiv of groupmod <pre> sudo dseditgroup -o edit -a geoff -t user wheel </pre>"
20 December 2021
- 18:2618:26, 20 December 2021 diff hist +110 m Ffmpeg notes No edit summary
- 18:2618:26, 20 December 2021 diff hist +52 N Category:Ffmpeg Created page with "Anything dealing with ffmpeg transcoding or playback" current
- 18:2518:25, 20 December 2021 diff hist +260 N 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..."
8 December 2021
- 15:0815:08, 8 December 2021 diff hist +170 m Bash-gotchas No edit summary current
3 December 2021
- 17:5617:56, 3 December 2021 diff hist +281 N Bash-sed-examples Created page with "Examples of using sed for different jobs * Remove all of a string until first match <pre> echo "1=2=3" | sed 's/[^=]*=//' 2=3 </pre> [https://unix.stackexchange.com/questions..."
- 15:1915:19, 3 December 2021 diff hist +754 N Bash-jq-examples Created page with "Some examples of using jq to do filtering.. <pre> raw jason: { "1": [ { "id": "123456789", "accountId": "a1-supplies-01234", "accountName": "a1-suppli..."
22 November 2021
- 12:0712:07, 22 November 2021 diff hist +84 m Bash-convert-strings-to-int No edit summary current
- 12:0112:01, 22 November 2021 diff hist +232 N Bash-convert-strings-to-int Created page with "In bash converting string values into integer values can be done this way: <pre> c=$(( A+b )) Anything within the (( )) is considered arithmetic </pre> So the simplest way to..."
- 10:3910:39, 22 November 2021 diff hist +128 m Linux-password-reset-root No edit summary
- 10:3810:38, 22 November 2021 diff hist +297 N Linux-password-reset-root Created page with "Really interesting way to reset a forgotten root password on Rocky. The assumption is that this will also work for other RHEL releases, although it has not been tested at all..."
17 November 2021
- 11:4311:43, 17 November 2021 diff hist +67 m Bash-git-commands No edit summary current
- 10:1310:13, 17 November 2021 diff hist +206 m Bash-remove-n-match No edit summary
- 10:1110:11, 17 November 2021 diff hist +985 N Bash-remove-n-match Created page with "Really unique problem and resolution using awk found in reddit. [https://www.reddit.com/r/bash/comments/qva5bm/delete_n_occurrence_of_a_pattern/?%24deep_link=true&correlation_..."
5 November 2021
- 15:4015:40, 5 November 2021 diff hist +591 N Bash-gotchas Created page with "Oddball things to remember when working in bash.. * Exit codes are not always honored in function calls when it is inline <pre> f() { echo "test"; exit 2 } f() { echo "test"..."
- 10:5410:54, 5 November 2021 diff hist +115 m Bash-git-commands No edit summary
- 10:0810:08, 5 November 2021 diff hist +212 m Bash-git-commands No edit summary
30 October 2021
- 18:1318:13, 30 October 2021 diff hist 0 m Madadm-notes No edit summary
- 18:1218:12, 30 October 2021 diff hist +135 m Madadm-notes No edit summary
- 18:1218:12, 30 October 2021 diff hist +101 m Madadm-notes No edit summary
- 18:1118:11, 30 October 2021 diff hist +384 m Madadm-notes No edit summary
- 18:0818:08, 30 October 2021 diff hist +480 N Madadm-notes Created page with "All the damn details of mdadm that you can never remember when a !@#$!#@ drive dies sfdisk can mirror two disks (usually) so that you can rebuild quickly.. [https://www.thege..."
- 18:0418:04, 30 October 2021 diff hist −2 m Zoneminder-notes No edit summary
- 18:0318:03, 30 October 2021 diff hist +109 m Zoneminder-notes No edit summary
- 18:0218:02, 30 October 2021 diff hist +43 N Category:Zoneminder Created page with "Placeholder for notes on running Zoneminder" current
- 18:0218:02, 30 October 2021 diff hist +325 N Zoneminder-notes Created page with "Zoneminder configuration information specific to the alarm filtering can be found in the following areas.. * [https://forums.zoneminder.com/viewtopic.php?t=4576 | Zoneminder..."
22 October 2021
- 19:5819:58, 22 October 2021 diff hist +54 m Bash-links No edit summary current
- 19:1419:14, 22 October 2021 diff hist +303 N Bash-links Created page with "Category:bash Interesting bash related links I have found on the web... * [https://overthewire.org/wargames/bandit/|Shell game that teaches you bash] * [http://bash.org/..."
- 19:0819:08, 22 October 2021 diff hist +19 m Bash-git-commands No edit summary