ios

libimobiledevice

源码安装

./autogen.sh
make
sudo make install

  • idevicerestore
    devel包尽量用作者提供的源码编译

安装文件

  • tree /usr/local/bin/
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    ├── ideviceactivation
    ├── idevicebackup
    ├── idevicebackup2
    ├── idevicebtlogger
    ├── idevicecrashreport
    ├── idevicedate
    ├── idevicedebug
    ├── idevicedebugserverproxy
    ├── idevicediagnostics
    ├── ideviceenterrecovery
    ├── idevice_id
    ├── ideviceimagemounter
    ├── ideviceinfo
    ├── ideviceinstaller
    ├── idevicename
    ├── idevicenotificationproxy
    ├── idevicepair
    ├── ideviceprovision
    ├── idevicerestore
    ├── idevicescreenshot
    ├── idevicesetlocation
    ├── idevicesyslog
    ├── ifuse
    ├── irecovery

源码

libimobiledevice


ish

install bash

1
apk add bash bash-doc bash-completion

vi /etc/passwd

1
root:x:0:0:root:/root:/usr/bin/bash

挂载 ios指定目录到 /mnt

1
mount -t ios . /mnt

修改镜像源为阿里

1
2
echo -e  "http://mirrors.aliyun.com/alpine/v3.4/main\nhttp://mirrors.aliyun.com/alpine/v3.4/community" \
> /etc/apk/repositories && apk update
  • 安装tzdata
    apk add tzdata

  • 拷贝对应时区止localtime

    1
    cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

指定时区

1
echo "Asia/Shanghai" > /etc/timezone

推荐文章