blob: e61725817262684f031d62b4273072d43910eb9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
## ---Installing idevicerestore---
## First We Need to Install the dependencies
sudo apt-get install build-essential automake cmake autoconf \
libreadline6 autotools-dev libcurl4-openssl-dev \
libplist1 libplist-utils libplist-dev libplist++-dev \
libzip-dev git-core git-arch git-cvs git-svn git-email \
git-daemon-run gitk gitweb git-doc rsync curl libgnutls-dev libtool
python-dev libreadline-dev libusb-dev
## Now to get what we need from Git
git clone git://git.marcansoft.com/usbmuxd.git
cd usbmuxd
cmake ~/usbmuxd
make && sudo make install
cd ~
git clone http://git.sukimashita.com/libimobiledevice.git
cd libimobiledevice
./autogen.sh
make && sudo make install
sudo ldconfig
## Now we can compile idevicerestore
cd ~
git clone http://github.com/posixninja/idevicerestore.git
cd idevicerestore
./autogen.sh
make && sudo make install
sudo ldconfig
## We also need ideviceactivate to activate the device
git clone http://github.com/posixninja/ideviceactivate.git
cd ideviceactivate
make
## idevicerestore usage - may need to be run as root
idevicerestore [-d] [-u] [-c] [-v] [-h] <input.ipsw>
-d, enable communication debugging
-u, target specific device by its 40-digit device UUID
-h, prints usage information
-c, restore with a custom firmware
-e, erase the device first
-s, use saurik's server instead of Apple's
-x, exclude NOR/Baseband update
-v, enable incremental levels of verboseness
## ideviceactivate usage - may need to be run as root
./ideviceactivate [-x] [-d] [-h] [-u] [-f]
-x deactivate the target device
-d enable communication debugging
-h prints usage information
-u UUID target specific device by its 40-digit device UUID
-f FILE activates device with local activation record
|