HowTO
-
iOS jailbreak
Reset to factory defaults Create a new Temporary account and login – otiliakumar Create a full-back-up using iTunes x64 v12.12.4.1 iPad 4 (16GB) White iOS Version 10.3.3 (14G60) https://www.tweakboxapp.com/ – unc0ver Jailbreak v3.5.2 for iOS 11.0 – 12.4 https://www.3u.com/ version 2.57 – 2021.07.14 unc0ver Jailbreak v6.1.2 for iOS 11.0 – 14.3 Odyssey v1.3.0 for iOS 13.0 – 13.7 Checkra1n v0.12.4b for iOS 13, 14 Electra v2.0 for iOS 11.0 – 11.4.1 Chimera v1.6.2 for iOS 12 – 12.5.3 Meridian v1.0…
-
How to remove startup programs on MacOS Monterey 12.3.1
Remove programs manually You can change startup programs Mac computers won’t always need manually, though it takes a bit of work. Here’s how to turn off startup programs Mac won’t use in System Preferences: On your Mac menu bar, select the Apple logo on the left side Select “System Preferences” Select “Users & Groups” Choose your ID from the list Note: if you’re the only user on your Mac, you may only have one profile, and won’t need to choose…
-
Protected: Combine QNAP Shared Folders into one Share
There is no excerpt because this is a protected post.
-
How to Map network drive MacOS Catalina Automount
How to Map a Network Drive on Mac Launch Finder Click Go > Connect to Server (Command + K) Enter the path for the network drive you’d like to map and click Connect. (smb://192.168.222.111) If you’re prompted for a confirmation, click Connect. Once the network drive has been mapped, it will appear under your desktop as a mounted drive or under your Locations menu in any Finder window. How to Automount a Network Drive on macOS Click the Apple Logo…
-
Migrate WordPress installation from GCP to cPanel
tutorial is based on documentation available here: https://docs.bitnami.com/general/apps/ https://docs.bitnami.com/general/apps/wordpress-pro/ Let’s first identify the version of OS running on Google Cloud virtual machine root@vm:/home# lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 9.12 (stretch) Release: 9.12 Codename: stretch Now let’s try to find Apache Document Root in Linux Chromium OS 11.0 To identify if your Bitnami stack uses MySQL or MariaDB run this command: root@vm:/home# test -d /opt/bitnami/mariadb && echo “MariaDB” || echo “MySQL” MySQL Check…
-
Install macOS 10.15 Catalina on VirtualBox on Windows 10 PC
install Oracle VirtualBox 6.1 VirtualBox 6.1.14 Oracle VM VirtualBox Extension Pack Download macOS 10.15 Catalina VMDK File cd “C:\Program Files\Oracle\VirtualBox\” VBoxManage.exe modifyvm “macOS 10.15 Catalina” –cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiSystemProduct” “iMac11,3” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiSystemVersion” “1.0” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiBoardProduct” “Iloveapple” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/smc/0/Config/DeviceKey” “ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC” 1
-
Unlock the full potential Raspberry PiHole
As of Pi-hole V5, the file /etc/pihole/adlists.list is no longer used. As discussed in the V5 release notes, adlists, domain blocks (regex, whitelist, blacklist), group assignments and gravity are in a single database in file /etc/pihole/gravity.db If you want to add the lists you show in your post, select the lot of them (without the commented lines), copy to your clipboard. Then go to web admin GUI > Group Management > adlists and paste the lot into the entry window,…
-
Setup a Raspberry Pi Plex Server
ensure our operating system is entirely up to date: sudo apt-get update sudo apt-get upgrade This package allows the “apt” package manager to retrieve packages over the “https” protocol that the Plex repository uses. sudo apt-get install apt-transport-https add the official Plex package repository: curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add – add the official plex repository echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list run the “update” command again to refresh the package list sudo apt-get update install the…
-
Install Terraform 0.13.4 on Homebrew on MacOS
installing Homebrew available officially here and also here Install Terraform official instructions here 01. First, install the HashiCorp tap, a repository of all our Homebrew packages. $ brew tap hashicorp/tap 02. Now, install Terraform 0.13.4 with hashicorp/tap/terraform. $ brew install hashicorp/tap/terraform 03. Update to the latest, run: $ brew upgrade hashicorp/tap/terraform 04. Verify the installation: $ terraform -help
-
Install Homebrew on MacOS Catalina 10.15.6
Official instructions here Paste this in a macOS Terminal and insert your user OS login password: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)”