06 2013 档案

Disable Nvidia in Lenovo Y470 Debian wheezy
摘要:1、add the apt-key as 'root' (! don't do this as 'sudo' )$ su root$ wget -O - http://suwako.nomanga.net/suwako.asc | apt-key add - 2、add therepository to source.list$ sudo vim /etc/apt/source.list# bumblebeedeb http://suwako.nomanga.net/debian sid main contribdeb-src http://suwako 阅读全文

posted @ 2013-06-24 08:41 plinx 阅读(602) 评论(0) 推荐(0)

Compile android source and kernel for emulator in Debian
摘要:1、download the android source code Reference fromhttp://source.android.com/source/downloading.html follow the reference: Create the dir and export the PATH$ mkdir ~/bin$ PATH=~/bin:$PATH Download the repo$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo$ chmod 775 ~/b... 阅读全文

posted @ 2013-06-23 14:23 plinx 阅读(924) 评论(0) 推荐(0)

Set up the environment for driver compiling in Debian
摘要:1、check the kernel version$ uname -r3.2.0-4-amd64 2、install the source code$ sudo apt-get install linux-source-3.2 then there would be a file in /usr/src$ ls /usr/src | grep linux-sourcelinux-source-3.2.tar.bz2 3、decompress the .bz2$ sudo tar xvf linux-source-3.2.tat.bz2 4、configure the files.... 阅读全文

posted @ 2013-06-22 03:12 plinx 阅读(515) 评论(0) 推荐(0)

Install NDK in Eclipse/Android Studio
摘要:1、 Download NDKhttps://developer.android.com/tools/sdk/ndk/index.html 2、Install NDK$ tar xvf android-ndk-r8e-linux-x86_64.tar.bz2 -C ~/Software/Android/$ cd Android$ mv android-ndk-r8e/ ndk/ 3、add PATH$ vim ~/.bashrc//----------------- add the following text ----------------------export NDK_HOME... 阅读全文

posted @ 2013-06-19 00:20 plinx 阅读(8753) 评论(0) 推荐(0)

First Android application
摘要:In eclipse ADT : 1、创建一个新工程File -> New -> Android Application Project 2、三个主要的文件/src/MainActivity.java/res/layout/activity_main.xml/res/values/strings.xml 3、activity_main.xml文件 文件下方有两种编辑方式:Graphical layout 编辑 与 xml 编辑。 此时暂时不需要修改main.xml文件。 4、string.xml文件 文件下方有两种编辑方式:Resources 编译 与 xml 编辑。 ... 阅读全文

posted @ 2013-06-16 16:17 plinx 阅读(274) 评论(0) 推荐(0)

Install ADT in debian Wheezy
摘要:1、download ADT from offical websitehttps://developer.android.com/sdk/index.html TIPS:With a single download, the ADT Bundle includes everything you need to begin developing apps:Eclipse + ADT pluginAndroid SDK ToolsAndroid Platform-toolsThe latest Android platformThe latest Android system image f... 阅读全文

posted @ 2013-06-16 14:18 plinx 阅读(469) 评论(0) 推荐(0)

Install Android Studio in debian Wheezy
摘要:1、download Android Studio from the offical websitehttps://developer.android.com/sdk/installing/studio.html (You could also check the offical website tips to install the Android Studio.) 2、Unpack the downloaded Tar file.$ sudo tar xvf android-studio-bundle-130.687321-linux.tgz -C ~/Software/Andro... 阅读全文

posted @ 2013-06-16 09:55 plinx 阅读(2172) 评论(1) 推荐(0)

Debian-amd64 Wheezy Intall Note
摘要:准备阶段: 1、download debian-amd64.ios cd1http://cdimage.debian.org/debian-cd/7.0.0/amd64/iso-cd/ 2、制作启动U盘 In linux : (别选错了盘符)# dd if=./debian-amd64.ios of=/dev/sdb In windows :UltraISO 3、重启安装 4、如果安装时提示无法安装wifi,可以到下面的网址下载,进入系统后手动安装http://packages.debian.org/wheezy/firmware-iwlwifi 成功安装系统后: 1、换源... 阅读全文

posted @ 2013-06-14 12:13 plinx 阅读(459) 评论(0) 推荐(0)

ubuntu 13.04 安装 JDK
摘要:具体步骤参详了如下链接:http://blog.csdn.net/yang_hui1986527/article/details/6677450 1、到 Sun 的官网下载http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html 选择 accept license ,然后选择适合自己机型的JDK下载。 2、解压文件,修改文件名$ sudo mkdir /usr/lib/jvm$ sudo tar zxvf jdk-7u21-linux-i586.tar.gz -C /usr/... 阅读全文

posted @ 2013-06-01 21:21 plinx 阅读(83433) 评论(3) 推荐(4)

导航