其他分享
首页 > 其他分享> > iOS越狱开发(1)THEOS环境搭建

iOS越狱开发(1)THEOS环境搭建

作者:互联网

1. 安装ldid

ldid用来专门签名iOS可执行文件的工具,用以在越狱iOS中取代Xcode自带的codesign。如果不安装,那么产生的deb文件就安装不到手机上

brew install ldid

2. Theos安装

官方建议把Theos安装在opt/theos/ 目录下

sudo git clone --recursive https://github.com/theos/theos.git

然后把/opt/theos的权限改为自己所拥有
sudo chown $(id -u):$(id -g) /opt/theos

3. 环境变量

终端输入:vim ~/.bash_profile

按E 键后输入:

export THEOS=/opt/theos
export PATH=/opt/theos/bin/:$PATH

按ESC后,再输入:WQ

更新立即生效
source ~/.bash_profile
查看是否生效:

echo $THEOS
echo $PATH

4. 测试安装是否成功

在任意路径下输入
nic.pl

标签:opt,iOS,越狱,PATH,THEOS,ldid,安装,theos
来源: https://www.cnblogs.com/wangdaodao/p/16492232.html