Last active
September 22, 2022 00:29
-
-
Save fyxme/5febcd26ca6d5b6cfaa981fa2e8c10c9 to your computer and use it in GitHub Desktop.
Checkrain jailbreak install script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to install checkrain on Debian based distros | |
# From https://checkra.in/linux | |
# Easiet way to jailbreak, get a live usb Debian iso, install checkra1n and run checkra1n | |
wget -O - https://assets.checkra.in/debian/archive.key | gpg --dearmor | sudo tee /usr/share/keyrings/checkra1n.gpg >/dev/null | |
echo 'deb [signed-by=/usr/share/keyrings/checkra1n.gpg] https://assets.checkra.in/debian /' | sudo tee /etc/apt/sources.list.d/checkra1n.list | |
sudo apt-get update | |
sudo apt-get install checkra1n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment