Skip to content

Instantly share code, notes, and snippets.

@nksCH
Last active April 24, 2018 17:36
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save nksCH/b5154c7ceba402513049 to your computer and use it in GitHub Desktop.
installing theos on device and some other tools
export $THEOS=/var/theos
apt-get install nano vim -y --force-yes
echo "deb https://coolstar.org/publicrepo/ ./" >> /etc/apt/sources.list.d/cydia.list
echo "deb http://nix.howett.net/theos/ ./" >> /etc/apt/sources.list.d/cydia.list
apt-get update
apt-get upgrade
apt-get install nano vim -y --force-yes
apt-get install perl net.howett.theos org.coolstar.iostoolchain curl top screen wget -y --force-yes
echo "export $THEOS=/var/theos" >> /root/.bash_login
mkdir -p $THEOS/sdks
cd /tmp
wget "http://iphone.howett.net/sdks/dl/iPhoneOS7.1.sdk.tbz2"
tar xfvj iPhoneOS7.1.sdk.tbz2 -C $THEOS/sdks
rm iPhoneOS7.1.sdk.tbz2
ln -s /usr/local/bin/perl /usr/bin/perl
apt-get install mobilesubstrate -y --force-yes
ln -s $THEOS/makefiles/platform/Darwin-arm.mk $THEOS/makefiles/platform/Darwin-arm64.mk
ln -s $THEOS/makefiles/targets/Darwin-arm $THEOS/makefiles/targets/Darwin-arm64
apt-get install syslogd cycript -y --force-yes
apt-get install nmap -y --force-yes
apt-get install openssh adv-cmds cycript vim nano mobileterminal-applesdk -y --force-yes
apt-get install network-cmds -y --force-yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment