10 2013 档案

摘要:问题发生概述:程序编译正常,在用Eclipse调试执行时,报错Unable to execute dex: Multiple dex files define,因为以前也没有遇到这类错误,首先便尝试万能纠错发,如下方法一,也是上网搜索众多解决方案之一,尝试后未果,便按照搜索方案,逐一尝试,都未能解决,最后盯着工程突然发现问题。具体解决方案如下:方法一:Eclipse->Project->去掉Build Automatically->Clear ->Build Project->Build Automatically,关闭Eclipse,再打开(我的问题不是出在这) 阅读全文
posted @ 2013-10-22 20:22 soeyong 阅读(254) 评论(0) 推荐(0)
摘要:解决:1. git abandon branchName;2. repo forall -c git reset HEAD --hard;repo forall -c git clean -df;repo sync -c -j8 阅读全文
posted @ 2013-10-21 20:52 soeyong 阅读(7090) 评论(0) 推荐(0)
摘要:直接使用repo sync同步到本地。可能会出现如下错误:$repo syncremote: Counting objects: 10, done.remote: Compressing objects: 100% (4/4), done.remote: Total 6 (delta 2), reused 6 (delta 2)Unpacking objects: 100% (6/6), done.From git://github.com/richi-chen/Pandaboard-ICS-repo 3ea7f09..11ecd6d master -> origin/master 53 阅读全文
posted @ 2013-10-15 08:25 soeyong 阅读(1134) 评论(0) 推荐(0)
摘要:问题:java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons:no swt-gtk-3740 in java.library.pathno swt-gtk in java.library.pathCan't load library: /home/pengeorge/.swt/lib/linux/x86/libswt-gtk-3740.soCan't load library: /home/pengeorge/.swt/lib/linux/x86/libswt-gtk.so解决: 把相关文件拷贝到~ 阅读全文
posted @ 2013-10-11 09:53 soeyong 阅读(274) 评论(0) 推荐(0)
摘要:解决办法: cd /binls -l shsudo rm -rf shsudo ln -s bash shls -l sh 阅读全文
posted @ 2013-10-10 17:18 soeyong 阅读(294) 评论(0) 推荐(0)
摘要:问题:gpg: Signature made Ma 01 oct 2013 19:44:27 +0300 EEST using RSA key ID 692B382Cgpg: Can't check signature: public key not founderror: could not verify the tag 'v1.12.4'解决: i found a solution here for the error that you are seeing :http://www.marshut.com/wrrts/repo-release-1-12-4.html 阅读全文
posted @ 2013-10-09 15:24 soeyong 阅读(2559) 评论(0) 推荐(0)
摘要:问题: # ssh 10.128.0.30Agent admitted failure to sign using the key.Permission denied (publickey).在将自己的公钥添加到要登陆的机器上时,仍然不能免密码登陆,并出现以下提示:Agent admitted failure to sign using the key.需要进行以下操作即可解决:ssh-add# ssh -vT git@github.com 阅读全文
posted @ 2013-10-09 15:23 soeyong 阅读(431) 评论(0) 推荐(0)