-
-
Save sixman9/a852febd4114fe26230917387bc38292 to your computer and use it in GitHub Desktop.
idevicerestore on linux (Debian-based)
This file contains 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
sudo apt update | |
# sudo apt upgrade | |
sudo apt install -y libcurl4-openssl-dev libplist-dev libzip-dev openssl libssl-dev libusb-1.0-0-dev libreadline-dev build-essential git make automake libtool pkg-config libssl-dev libimobiledevice-dev libgpod-common libgpod-dev libcurl3-gnutls libcurl4 libcurl4-openssl-dev | |
git clone https://github.com/libimobiledevice/libirecovery | |
git clone https://github.com/libimobiledevice/idevicerestore | |
git clone https://github.com/libimobiledevice/usbmuxd | |
git clone https://github.com/libimobiledevice/libimobiledevice | |
git clone https://github.com/libimobiledevice/libusbmuxd | |
git clone https://github.com/libimobiledevice/libplist | |
cd libplist && ./autogen.sh --without-cython && sudo make install && cd .. | |
cd libusbmuxd && ./autogen.sh && sudo make install && cd .. | |
cd libimobiledevice && ./autogen.sh --without-cython && sudo make install && cd .. | |
cd usbmuxd && ./autogen.sh && sudo make install && cd .. | |
cd libirecovery && ./autogen.sh && sudo make install && cd .. | |
cd idevicerestore && ./autogen.sh && sudo make install && cd .. | |
sudo ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment