上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 80 下一页
摘要: 今天在同步Android Source时出 error: .repo/manifests/: contains uncommitted changesgoogle查找一阵子,无果,虽然也有人遇到但却没有给出解决方法。最后试了一下以下方法,得以解决。解决方法:第一种方法:删除Andriod/source/.repo/目录下除了projects目录以外的所有目录。重新执行命令1repo init-u git://android.git.kernel.org/platform/manifest.git2repo sync 此时因为projects目录文件没有删除,所以重新同步不会重新下载所有文件,. 阅读全文
posted @ 2012-01-01 17:52 googlegis 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: 建立一个工程目录,随便MKDIR一个目录就可以了,然后再进入到你要下载源码的目录,完事之后就再将andoid源码下载到你刚才建立的目录下面。repo-init -u git://android.git.kernel.org/platform/manifest -b master做到这一步的时候出现repo: command not found。重复多次仍然是repo: command not found,我检查了一下我的命令,看起来也没错呀,这倒底是怎么回事呢。我的解决办法是要在~目录下建立bin与android,而不是其它地方,否则会出现问题,~目录实际上就是用户登录进入的目录the rea 阅读全文
posted @ 2012-01-01 09:03 googlegis 阅读(11431) 评论(1) 推荐(0) 编辑
摘要: 方法一:1.添加ibus源加入:deb http://ppa.launchpad.net/ibus-dev/ppa/ubuntu jaunty main这个源即可sudo apt-get update更新一下。然后安装ibussudo apt-get install ibus ibus-table ibus-pinyin python-ibus ibus-qt4 ibus-gtk把这些都装上,前面的三个是必须的python-ibus,在8.04的时候自带的版本过低,所以需要加入新的源安装一下,到了9.04也装一下,以防万一?ibus-qt4,ibus-gtk 这两个包可以防止出现不能进行光标跟 阅读全文
posted @ 2012-01-01 08:16 googlegis 阅读(263) 评论(0) 推荐(0) 编辑
摘要: root@hum-desktop:~/android-x86/iksaif_proj# repo init -ugit://git.iksaif.net/android-x86/kernelfatal: manifest 'default.xml' not availablefatal: manifest default.xml not foundit is another method to user git, it's git clone.git clone git://git.iksaif.net/android-x86/kernel <your targe 阅读全文
posted @ 2011-12-31 21:47 googlegis 阅读(7173) 评论(0) 推荐(0) 编辑
摘要: I install repo follow as websiteInstalling Repo$ curlhttp://android.git.kernel.org/repo>~/bin/repo$ chmod a+x ~/bin/repo$ mkdir working-directory-name$ cd working-directory-name$ repo init -u git://android.git.kernel.org/platform/manifest.gitbut the last command this error occurNo command 're 阅读全文
posted @ 2011-12-31 19:39 googlegis 阅读(4743) 评论(0) 推荐(0) 编辑
摘要: Ubuntu系统的Hosts只需修改/etc/hosts文件,在目录中还有一个hosts.conf文件,刚开始还以为只需要修改这个就可以了,结果发现是需要修改hosts。修改完之后要重启网络。 具体过程如下: 1、修改hosts sudo gedit /etc/hosts 2、添加解析记录( . ) 完整案例:127.0.0.1 localhost.localdomain localhost 简洁记录:127.0.0.1 localhost 3、保存后重启网络 sudo /etc/init.d/networking restart 附过滤163、mop、msn等更多广告 0.0.0.0 rad 阅读全文
posted @ 2011-12-31 18:47 googlegis 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 有的时候,使用sudo apt-get install可能导致意想不到的错误,尤其是中途中断了安装时,错误信息为:Errors were encountered while processing:ttf-dustinkhangmankdeedukdeE: Sub-process /usr/bin/dpkg returned an error code (1)此时可以这样解决:cd /var/lib/dpkgsudo mv info info.baksudo mkdir info重新安装,在此为:sudo apt-get --reinstall install ttf-dustin khangm 阅读全文
posted @ 2011-12-31 18:23 googlegis 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 今天遇到个诡异问题,向一个目录(myResources)粘贴文件的时候,出现这样一个提示Permission denied是权限没设好,只是拷贝粘贴一个文件,怎么会这样?解决的办法:$ sudo chmod -R 777 myResources其中-R 是指级联应用到目录里的所有子目录和文件777 是所有用户都拥有最高权限 阅读全文
posted @ 2011-12-31 14:45 googlegis 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: 1.Android编译源码时出现的:<命令行>:0:0: 错误: “_FORTIFY_SOURCE”重定义 [-Werror]2.:error: ‘ptrdiff_t’ does not name a type3.:undefined reference to `pthread_mutexattr_destroy'4.error: variable ‘ParamName’ set but not used [-Werror=unused-but-set-variable]5.E: Sub-process /usr/bin/dpkg returned an error cod 阅读全文
posted @ 2011-12-26 21:50 googlegis 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 参考:http://source.android.com/source/index.html参考官方文档,完全可以编译出来,但是官方文档还是没有自己写一遍记得清楚啊。1. 搭建环境 安装JDK 在 Ubuntu11下android 源码编译 step by step -1 安装ubuntu和jdk中已经介绍。2. 安装所需库文件。 64-bit (recommended)$ sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev libc6-dev lib32ncurse. 阅读全文
posted @ 2011-12-25 18:35 googlegis 阅读(252) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 80 下一页

坐标合肥,非典型GIS开发人员 GitHub