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).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 13:27, 15 April 2025 Chubbard talk contribs created page Category:Ssh (Created page with "Generic "anything" related specifically to ssh and ssh services")
  • 10:37, 15 April 2025 Chubbard talk contribs created page Ssh (Created page with "== SSH examples for abnormal tasks == Yes, I can never remember exactly how to get the !#$!@# port forwarding done correctly. Bah! ===SSH port forwarding for postgres=== * Accounting for possibility of using abnormal ssh ports and strange ssh keys. * Connect pgadmin to localhost:5432 and set your authentication <pre> export KEY=~/.ssh/some_key export PORT=2345 export JUMPBOX=192.168.15.58 ssh -i ${KEY} -p ${PORT} -L 5432:192.168.15.250:5432 SSH_USER@$${JUMPBOX} -N </p...")
  • 18:18, 13 April 2025 User account Marcos0409 talk contribs was created by Chubbard talk contribs and password was sent by email
  • 09:34, 10 April 2025 Chubbard talk contribs created page Bash-ps-examples (Created page with "== Generic Page of PS options == === threads from process === See the threads for a given process * [https://serverfault.com/questions/932406/how-to-tell-threads-from-processes-in-top-and-ps-on-linux show threads from process] <pre> ps aux |grep processName ps -fly -T -p PID </pre>")
  • 14:43, 3 April 2025 Chubbard talk contribs created page Bash rename files (Created page with "==Rename files that have reserved characters== When ls is showing that funny diamond-question value in the output or you see a litteral $ in the filename, here is the fix I was able to use... <pre> ls output via -b N\343o_Wave via ls -i 213764100 'N'$'\343''o_Wave' # Use the inode value to move the file to something typable find . -maxdepth 1 -inum 213764100 -exec mv {} N_o_Wave \; </pre> Category:Bash")
  • 08:49, 26 March 2025 Chubbard talk contribs created page Category:Ansible (Created page with "Just a catchall category for Ansible stuff.")
  • 08:48, 26 March 2025 Chubbard talk contribs created page Ansible (Created page with "==Ansible Notes== * Find details about ansible collection versions (RHEL) <pre> ~/.local/bin/ansible-galaxy collection list # /home/USER/.local/lib/python3.?/site-packages/ansible_collections Collection Version ----------------------------- ------- amazon.aws 1.5.1 ansible.netcommon 2.5.0 ansible.posix 1.3.0 ***** SNIP ***** # /usr/share/ansible/collections/ansible_collections Collection Versio...")
  • 11:01, 11 March 2025 Chubbard talk contribs created page Iptables (Created page with "==iptables notes== Just some generic notes on working with IP tables. Can be a PITA when an issue is happening to remember the details.. REMEMBER: You can block YOURSELF if you do not use your head! Dont block: Internal IP address YOURSELF external IP address (if logging in via public interfaces) Loopbacks... Not sure what would happen but expect it would brick things.. Simple blocks * iptables -A INPUT -s 47.245.124.200 -j DROP Reminders: * This will not persist...")
  • 16:10, 10 March 2025 Chubbard talk contribs blocked Pmorris talk contribs with an expiration time of indefinite (account creation disabled, autoblock disabled, email disabled, cannot edit own talk page) (User is deceased. (miss you))
  • 16:08, 10 March 2025 Chubbard talk contribs blocked JefferyGoodin83 talk contribs with an expiration time of indefinite (account creation disabled) (Spamming links to external sites)
  • 14:49, 26 January 2025 Chubbard talk contribs blocked MickeyWicks901 talk contribs with an expiration time of indefinite (account creation disabled)
  • 14:48, 26 January 2025 Chubbard talk contribs blocked UtaBelair19 talk contribs with an expiration time of indefinite (account creation disabled) (Inserting false information)
  • 14:44, 26 January 2025 User account JefferyGoodin83 talk contribs was created by Chubbard talk contribs and password was sent by email
  • 17:39, 18 January 2025 Chubbard talk contribs created page Compression (Created page with "==Generic Notes on compressed files== ==rar== ==7z== * to show the files only via listing 7z l -ba file.7z ==zip== Compression")
  • 20:07, 4 January 2025 Chubbard talk contribs created page Category:Raspberry (Created page with "Just a generic category for Raspberry Pi stuff")
  • 19:46, 4 January 2025 User account MickeyWicks901 talk contribs was created by Chubbard talk contribs and password was sent by email (Might regret this, but could be legit)
  • 19:44, 4 January 2025 User account UtaBelair19 talk contribs was created by Chubbard talk contribs and password was sent by email (This could be a legit request)
  • 09:46, 3 May 2024 Chubbard talk contribs created page Rocky and RHEL Stuff (Created page with "=== General notes and examples working with Rocky to remember === == Set Static IP == [https://devtutorial.io/how-to-configure-static-ip-address-on-rocky-linux-9-p3386.html| set static IP for Rocky 9] <pre> nmcli connection show sudo nmcli connection modify enp0s3 ipv4.addresses 192.168.1.30/24 sudo nmcli connection modify enp0s3 ipv4.gateway 192.168.1.1 sudo nmcli connection modify enp0s3 ipv4.dns 8.8.8.8 sudo nmcli connection modify enp0s3 ipv4.method manual sudo nmcl...")
  • 12:07, 3 April 2024 Chubbard talk contribs created page Category:Postgres (Created page with "Anything specific to postgres should get dropped into this category..")
  • 12:06, 3 April 2024 Chubbard talk contribs created page Postgres (Created page with "== Postgres Notes == I generally use MySQL, however there have been cases where I need to use Postgres. I can never remember the exact syntax to do basic things, so here we are... === Create User and Database === Admin login to Postgeres (fresh install Pg14) <pre> sudo -u postgres psql postgres </pre> Create User <pre> CREATE ROLE someUser LOGIN PASSWORD 'somePassword'; </pre> Create database and add someUser as the owner <pre> CREATE DATABASE databaseName with owner =...")
  • 14:46, 29 March 2024 Chubbard talk contribs created page Category:Docker (Created page with "Docker specific stuff that goes beyond generic "container stuff"")
  • 18:57, 17 February 2024 Chubbard talk contribs created page General links howTo (Created page with "=Links to different HowTo pages= I have a tendency to loose pages that I find interesting, and my bookmark list is a mess :) I will be saving links here that I find useful for different things either pertaining to the NMS work I am doing or just cool howto articles I find on the net. == PHP Specific == * [https://alexwebdevelop.com/php-daemons/ Basic PHP Daemons tutorial] * [https://github.com/barracudanetworks/forkdaemon-php github project - Using this for now for dae...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)