2021-03-25 22:16:21 -05:00
|
|
|
+++
|
|
|
|
title = "Checkra1n GUI on Other Distros"
|
|
|
|
date = "2021-03-25T21:19:51-05:00"
|
|
|
|
author = "bbaovanc"
|
|
|
|
cover = "/blog/media/checkra1n-gui-on-arch-linux.png"
|
2021-03-27 18:39:12 -05:00
|
|
|
tags = ["guide", "linux", "archlinux", "jailbreak", "checkra1n"]
|
2021-03-25 22:16:21 -05:00
|
|
|
keywords = ["checkra1n", "gui", "linux", "arch linux"]
|
2021-03-26 13:10:17 -05:00
|
|
|
|
|
|
|
description = """
|
|
|
|
You can run the GUI version of checkra1n on non Debian-based distributions.
|
|
|
|
"""
|
|
|
|
|
2021-03-25 22:16:21 -05:00
|
|
|
showFullContent = false
|
2021-03-26 01:16:57 -05:00
|
|
|
toc = true
|
2021-03-25 22:16:21 -05:00
|
|
|
+++
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
2021-03-26 13:10:17 -05:00
|
|
|
The official cross-distribution build of checkra1n only contains a CLI and TUI.
|
|
|
|
However, the version available in the
|
|
|
|
[checkra1n APT repository](https://checkra.in/linux) also contains a GTK-based
|
|
|
|
GUI which can be accessed using the `--gui` flag, or the included
|
|
|
|
`checkra1n.desktop` file.
|
2021-03-25 22:16:21 -05:00
|
|
|
|
|
|
|
## Other Distributions
|
|
|
|
|
2021-03-26 13:10:17 -05:00
|
|
|
First, download the Debian package available at
|
|
|
|
`https://assets.checkra.in/debian/checkra1n_VERSION_amd64.deb` (as of writing,
|
|
|
|
`VERSION` is currently `0.12.2`). Then, extract the `checkra1n` executable from
|
|
|
|
the package, and install the correct shared libraries. Here are the most
|
|
|
|
important ones, and their corresponding package names on Arch Linux:
|
2021-03-25 22:16:21 -05:00
|
|
|
|
|
|
|
- libimobiledevice-1.0.so.6 (`libimobiledevice`)
|
|
|
|
- libirecovery-1.0.so.3 (`libirecovery`)
|
|
|
|
- libtvcontrol.so (`libtvcontrol`)
|
|
|
|
- libplist-2.0.so.3 (`libplist`)
|
|
|
|
- libncurses.so.5 (`ncurses5-compat-libs`)
|
|
|
|
|
2021-03-26 13:10:17 -05:00
|
|
|
I found these by running the binary and then finding and installing the package
|
|
|
|
that contained the shared object I was missing.
|
2021-03-25 22:16:21 -05:00
|
|
|
|
2021-03-26 13:10:17 -05:00
|
|
|
I also made an AUR package named
|
|
|
|
[`checkra1n-gui`](https://aur.archlinux.org/packages/checkra1n-gui),
|
|
|
|
which does all this automatically.
|
2021-03-25 22:16:21 -05:00
|
|
|
|
|
|
|
## Conclusion
|
|
|
|
|
2021-03-26 13:10:17 -05:00
|
|
|
As I expected, there is nothing preventing the checkra1n GUI from working on non
|
|
|
|
Debian-based distributions (as far as I can tell).
|