12 Aug 2012
下载地址:http://downloadandroidrom.com/file/Nexus7/rooting/Nexus7Root.zip
$ mkdir nexus7 && cp Nexus7Root.zip nexus7 && cd nexus7
$ unzip Nexus7Root.zip // 解压
$ chmod 755 * // 提升可执行权限
$ adb reboot bootloader // 重启手机并让手机进入bootloader模式,使用adb命令的前提是安装了Android SDK,如果没有那可以按住 *电源键+减音量键* 来进入bootloader模式。
$ ./fastboot-linux oem unlock // 解锁手机
$ adb reboot bootloader // 进入bootloader模式,手动进入 *电源键+减音量键*
$ ./fastboot-linux flash recovery recovery-clockwork-touch-6.0.0.6-grouper.img
$ ./fastboot-linux erase cache
很详细的教程:http://nexus7root.com/nexus-7-root/how-to-root-nexus-7/
10 Aug 2012
官方下载地址:http://www.sonatype.org/nexus/go
$ sudo mkdir -p /opt/nexus // 创建/opt/nexus/目录
$ sudo chmod 777 /opt/nexus // 给/opt/nexus/目录可读可写可执行权限
$ tar xvzf nexus-2.x.x-bundle.tgz // 解压缩
$ cp -r nexus-2.x.x /opt/nexus/ // 拷贝到/opt/nexus/目录下
基本配置 主要实现本地创建代理远程仓库。
1、打开WEB管理界面:http://127.0.0.1:8081/nexus/index.html
2、点击右上角Log In进行登录,默认帐号:admin、密码:admin123
3、点击左侧Repositories项 -> central仓库 -> Configuration -> Download Remote Indexes=True -> Save,表示下载远程仓库的索引。
4、右键central仓库 -> Update Index,更新远程仓库索引到本地,这一步能够加速本地索引。
Maven配置 配置Maven默认使用本地仓库,修改setting.xml全局配置文件。
$ vim ~/.m2/setting.xml
central
central
central
http://127.0.0.1:8081/nexus/content/repositories/central
nexus
nexus
local private nexus
http://127.0.0.1:8081/nexus/content/groups/public
nexus-snapshots
nexus-snapshots
local private nexus snapshots
http://127.0.0.1:8081/nexus/content/groups/public-snapshots
nexus-releases
admin
admin123
nexus-snapshots
admin
admin123
nexus
nexus-snapshots
官方教程:http://sonatype.com/books/nexus-book/reference/index.html
很详细的教程:http://juvenshun.iteye.com/blog/349534