This guide covers how to download models for Apple Intelligence, not just the new Siri UI. Be warned, the process is complex and may not be worth the effort for most users.
- Writing Tools
- Memories
Wiki: | |
https://ramn.readthedocs.io/en/latest/userguide/diag_tutorial.html# | |
Command: | |
isotpdump -s 7E0 -d 7E8 -c -a -u vcan0 | |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
mv /usr/lib64 /usr/.lib64 | |
mv /usr/x86_64-linux-gnu /usr/.x86_64-linux-gnu | |
apt-get install gcc g++ make dkms fakeroot | |
# Download https://mega.co.nz/#!249nkZ6D!G_QanBu2lj5N3MnbHtC3kQLleV5QaSSE51iwfosnyn0 | |
cp ~/Download/Catalyst_15.7.tar.gz ~/ | |
tar zxvf Catalyst_15.7.tar.gz | |
cd Setup-Experimental | |
mkdir /lib/modules/4.0.0-kali1-amd64/build/include/linux |
#!/bin/bash | |
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
OUTPUT=/tmp/libimobiledeviceinstall.log | |
log() { | |
printf "\r$1\n" ; # Stampo il messaggio di log | |
printf "$2" ; # Stampo la percentuale di completamento | |
} |
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
OUT="/root/Scrivania/Ios/Error.log" | |
#Script per ripristinare automaticamente un dispositivo ios, piccole note per l'uso: | |
#I Firmware devono essere presenti nella cartella /root/Scrivania/Ios/ | |
#Necessita obbligatoriamente di una connessione a internet. | |
#In caso di Problemi un log verrà salvato nella cartella Ios. | |
echo "${RED} Backup, Ripristino, Attivazione, Rstore Backup completo automatizzato By Genhack ${NC}" |
Series of command to download and install libimobiledevice
Created by: Genhack && ABeltramo #GsmIta
How to start the magic?
curl --silent --location https://gist.githubusercontent.com/ABeltramo/5b7d0ac3031e1b5507f1/raw/install.sh -o installLibimobiledevice.sh
sudo sh installLibimobiledevice.sh
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
OUT="/tmp/libimobiledeviceinstallation.log" | |
#1: Scarico dipendenze | |
echo "${RED} Downlaod Dipendenze & installazione ... ${NC}" | |
apt-get install -y --force-yes automake autoconf-archive libtool libssl-dev libgcrypt11-dev libp11-kit-dev libcurl4-gnutls-dev libusb-1.0 libzip-dev libfuse-dev clutter-1.0 clutter-gtk-1.0 | |
#1.2: Cython | |
echo "${RED} Cython ${NC}" |