Advanced Search
Search Results
121 total results found
Fail2Ban
Setup Update and install apt update && apt upgrade -y && apt install -y fail2ban Start fail2ban and set it to auto start on boot sudo systemctl start fail2ban && sudo systemctl enable fail2ban Make a local copy of the config file (why? because jail.conf ...
Image manipulation
Compression Install sudo apt-get install imagemagick Compress command mogrify -quality 80% *.jpg note: this will overwrite images
SSH
Generate a keypair 1 - Generate the key ssh-keygen -t ed25519 -a 100 -f $HOME/.ssh/SSH_KEY_NAME 2 - Copy the key to the server ssh-copy-id -i ~/.ssh/id_rsa.pub USERNAME@SERVER_IP
wget
General Usage wget -Flags URL Full site mirror wget -mkprE -np -nc -l inf -e robots=off --restrict-file-names=windows -D example.com --no-check-certificate http://example.com Flags --mirror / -m Turns on all options to make a mirror copy of a site ...
Bash
Edit shortcuts Open .bashrc file and add alias 1="command" Auto run commands on terminal open Open .bashrc file and add command to bottom file Fix: no bash after ssh login chsh -s /bin/bash
Donate to
eff lets encrypt https://support.bitcoinsydney.org/ https://childrenshealthdefense.org/ https://imahealth.org/
Holiday list
Places to visit and things to do Australia Big swing Kayaking Sky diving Water park theme park hot air ballooning rock climbing paragliding Russia Architecture Food prices Skiing Amsterdam Architecture Food Local Spices ...
Tests
Testing for deficincies Iodine Put a drop or two of iodine on your skin, if the brown smudge is gone in less then 1 hour, iodine is low, if its still there after 5 hours, its ok Low stomach acid / Low pH Put 1/4 to 1/4 a tablespoot of bicarb ...
Spike Protein Detox
bromilane 500mg once a day nattokinase 2000U twice a day circumin 500mg 3x a day for 12 months
Software problem
In order of what to try first: Check if program is running in task manager, if it is, close it in task manager and reopen it restart computer uninstal and reinstall program destory computer and wonder why nothing works when it should
Internet
In order of importance Try internet on another device first (make sure airplane mode is enabled and wifi is connected) unplug modem and nbn box for 1 minute Turn off nbn box, connect computer directly to nbn box (BYPASSING MODEM) and wait 10 minutes chec...
Buying tips
Things to check included apple car play usb ports cruise control how to put up and down roof glove box spare tyre Driving test fast acceleration fast braking air con heater cruise control how to open petrol cap how to open bonet how ...
Risks & Mitigation
All Potential Crypto Risks Clipboard Manipulator RIsk: A virus could view your clipboard and if it detects a wallet address, it could change it with an attackers address Mitigation: Check first and last 8 digits of address Loosing Hardware wallet ...
spotdl
Install & Setup Best to load a venv first Installing spotdl pip install spotdl Open the config file at .spotdl/config.json and update "output" to be "{album}/{title}.{output-ext}" Updating pip install --upgrade spotdl
ffmpeg
Installing sudo apt install ffmpeg Compress a video to h265 ffmpeg -i example_h264.mp4 -c:v libx265 -crf 24 -preset fast -c:a aac -b:a 128k example_h265.mp4 CRF Info For H.264 (x264): The typical CRF range is 18-28. CRF 18: Near lossless quality ...
UFW
General Info By default, UFW is set to deny all incoming connections and allow all outgoing connections. This means anyone trying to reach your server would not be able to connect, while any application within the server would be able to reach the outside wor...
Swap
Clear swap file 1 - Disable Swap sudo swapoff -a 2 - Re-enable swap sudo swapon -a View Swap usage sudo smem -rs swap Swap config Update swappiness config sudo bash -c "echo 'vm.swappiness = 1' >> /etc/sysctl.conf" Update value immediately ...
IPFS
Installation for Linux 1 - Download the package wget https://dist.ipfs.tech/kubo/v0.31.0/kubo_v0.31.0_linux-amd64.tar.gz 2 - Unzip the file tar -xvzf kubo_v0.39.0_linux-amd64.tar.gz 3 - Move into the kubo folder cd kubo 4 - Run the install script s...
Disk Stuff
List disks: fdisk -l OR df -h Scanning 1 - Check if SMART scans are enabled smartctl -s on /dev/sdX 2 - Run a test smartctl -t DURATION /dev/sdX Duration is either "long" or "short" 3 - Check results smartctl -a /dev/sdX S.M.A.R.T sc...
Wireguard
Setup Script #!/bin/bash # Checks to see if script is being run as root if [ "$EUID" -ne 0 ]; then echo "Please run as root" exit fi sudo apt install wireguard # Deletes keys in case this script is being run again rm -f /etc/wireguard/* ...