update
[linguofeng.github.com.git] / _posts / 2012-08-12-nexus7-root.textile
bloba379e1d14f0f1fdeb2f70a63d32a788fcb46ba20
1 ---
2 layout: post
3 title: Google Nexus7获取Root权限
4 description: 在Ubuntu下获取Nexus7的Root权限
5 categories: [archive]
6 tags: [android, nexus7]
7 navigation: [1.准备, 2.解锁, 3.Flash Recovery]
8 ---
10 <section id="1">
11     <div class="page-header">
12         <h3>一、准备 <small>下载获取Root权限的工具包。</small></h3>
13     </div>
14 <pre>
15 下载地址:http://downloadandroidrom.com/file/Nexus7/rooting/Nexus7Root.zip
16 </pre>
17 </section>
19 <section id="2">
20     <div class="page-header">
21         <h3>二、解锁 <small>Ubuntu和Mac下是免驱动的。</small></h3>
22     </div>
23 <pre>
24 $ mkdir nexus7 && cp Nexus7Root.zip nexus7 && cd nexus7
25 $ unzip Nexus7Root.zip              // 解压
26 $ chmod 755 *                       // 提升可执行权限
27 $ adb reboot bootloader             // 重启手机并让手机进入bootloader模式,使用adb命令的前提是安装了Android SDK,如果没有那可以按住 *电源键+减音量键* 来进入bootloader模式。
28 $ ./fastboot-linux oem unlock       // 解锁手机
29 </pre>
30 </section>
32 <section id="3">
33     <div class="page-header">
34         <h3>三、flash recovery <small>先重启手机并把nexus7目录里的 *CWM-SuperSU-v0.94.zip* 拷贝到SD卡根目录,才刷Recovery。</small></h3>
35     </div>
36 <pre>
37 $ adb reboot bootloader             // 进入bootloader模式,手动进入 *电源键+减音量键*
38 $ ./fastboot-linux flash recovery recovery-clockwork-touch-6.0.0.6-grouper.img
39 $ ./fastboot-linux erase cache
40 </pre>
41 </section>
43 <section>
44     <div class="page-header">
45         <h3>参考</h3>
46     </div>
47 <pre>
48 很详细的教程:http://nexus7root.com/nexus-7-root/how-to-root-nexus-7/
49 </pre>
50 </section>