ox.01 安裝dpkg和ldid
dpkg是debian的軟體包。
ldid是越獄祖師爺saurik開發的一款二進位制授權管理軟體,可以對越獄應用進行sha1運算生成授權,讓軟體包可以在iphone上執行。
在這裡我們使用homebrew來安裝他們。homebrew是一款mac上的基於ruby的包管理器,可以理解為與yum、apt、pecman類似即可。
用homebrew安裝上述軟體僅需一句話:
brew install dpkg ldid
如果沒有安裝homebrew,那麼安裝它也僅僅只需要一句話(可能需要vpn環境,github最近越來越不穩定也是眾所周知的事情):
/usr/bin/ruby -e "$(curl -fssl "
ox.02 安裝thoes
之前我們把theos安裝在/opt/theos,現在我們還是安裝在這個資料夾。
sudo git clone --recursive /opt/theos
然後把/opt/theos的許可權改成你自己:
sudo chown $(id -u):$(id -g) /opt/theos
最後這一步也很重要,要把theos的執行路徑加入到環境變數之中,在~./bash_profile中加上這麼兩句:
export theos=/opt/theos
export path=/opt/theos/bin/:$path
最終~./bash_profile會長這樣:
1.png697x562 75.1 kb
ox.03 測試是否安裝成功
cd到任意可執行目錄,
執行:nic.pl
new instance creator開始執行則已經安裝成功。
0x.04 從舊款theos公升級到最新版
直接上**:
git submodule update –recursive
記得加入遞迴(-recursive)選項。是不是比原來的簡單多了?
0x.05 注意事項
安裝最新版docker
由於yum install y docker,安裝之後的版本不一定是最新的,新老版本差異很大,有些指令不支援,如果遇到報各種各樣奇葩的錯誤,就重新安裝最新docker 1.解除安裝舊版 yum remove docker yum remove docker client yum remove doc...
iOS 最新版 CocoaPods 的安裝流程
ios 最新版 cocoapods 的安裝流程 1.移除現有ruby預設源 gem sources remove 2.使用新的源 gem sources a 3.驗證新源是否替換成功 gem sources l 4.安裝cocoapods 1 sudo gem install cocoapods 備...
iOS 最新版 CocoaPods 的安裝流程
1.移除現有ruby預設源 gem sources remove2.使用新的源 gem sources a3.驗證新源是否替換成功 gem sources l4.安裝cocoapods 1 sudo gem install cocoapods 備註 蘋果系統公升級os x el capitan後改為...