Install Checkra1n on Debian using APT
This guide explains how to install the Checkra1n jailbreak tool on Debian systems using the APT package manager. The following commands will download the required GPG key, add the Checkra1n repository, update the package lists, and install the Checkra1n package.
-
wget -O - https://assets.checkra.in/debian/archive.key | gpg --dearmor | sudo tee /usr/share/keyrings/checkra1n.gpg >/dev/nullThis command downloads the GPG key from the Checkra1n repository and saves it to the
/usr/share/keyrings/checkra1n.gpgfile.wget -O - https://assets.checkra.in/debian/archive.key: Downloads the GPG key from the specified URL.gpg --dearmor: Converts the GPG key from ASCII armored format to binary format.sudo tee /usr/share/keyrings/checkra1n.gpg >/dev/null: Saves the converted GPG key to the specified file.
-
echo 'deb [signed-by=/usr/share/keyrings/checkra1n.gpg] https://assets.checkra.in/debian /' | sudo tee /etc/apt/sources.list.d/checkra1n.listThis command adds the Checkra1n repository to the APT sources list, specifying the location of the GPG key.
echo 'deb [signed-by=/usr/share/keyrings/checkra1n.gpg] https://assets.checkra.in/debian /': Creates a line containing the repository URL and GPG key location.sudo tee /etc/apt/sources.list.d/checkra1n.list: Appends the line to the APT sources list file.
-
sudo apt-get updateThis command updates the package lists, ensuring the latest available packages are considered for installation.
-
sudo apt-get install checkra1nThis command installs the Checkra1n package using the APT package manager.
By following these steps, you can successfully install the Checkra1n jailbreak tool on your Debian system. Remember to run these commands as a superuser (root) using sudo for proper permissions.
原文地址: https://www.cveoy.top/t/topic/Fzl 著作权归作者所有。请勿转载和采集!