上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页
摘要: [转自: http://blog.csdn.net/Paradise_for_why/article/details/5550619]这一章就是著名的IPC,这个东西实际的作用和它的名字一样普及。例如我们浏览网页,打印文章,等等。IPC总共有五种类型:共享内存(Shared Memory):最容易理... 阅读全文
posted @ 2014-11-04 22:48 scue 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1. 安装pip easy_install pip2. 安装virtualenvwrapper sudo pip install virtualenvwrapper3. 使用virtualenv source /usr/local/bin/virtualenvwrapper.sh mkvir... 阅读全文
posted @ 2014-11-04 01:15 scue 阅读(3732) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/expect -f 2 # sudo apt-get install expect 3 # ./ssh.exp user passwd server 4 set user [lrange $argv 0 0] 5 set pass [lrange $argv 1 1] 6... 阅读全文
posted @ 2014-10-16 14:33 scue 阅读(1838) 评论(0) 推荐(0) 编辑
摘要: 报错: Failed to complete Gradle Execution Cause: error in opening zip file.原因: 安装gradle失败引起的,往往是上网需要验证或是上网权限没有开通导致的;解决: 1. 先删除原有的残余信息 rm -rf ~/.gra... 阅读全文
posted @ 2014-09-16 14:31 scue 阅读(4190) 评论(0) 推荐(0) 编辑
摘要: 因为有需要做Android相关的开发工作,很多时候要穿越之后才能做事情;如Android文件加密预研、Android NDK/SDK的下载,都需要使用得到Google;但是穿越之后,访问国内网站就不是那么方便了,所以,写一脚本,在需要的时候直接调用下就可以直达国内网站了; 1 #!/bin/bash... 阅读全文
posted @ 2014-09-07 18:07 scue 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1. Linux安装vbox,略过2. 查看已安装扩展插件VBoxManage list extpacks3. 创建一个vm:VBoxManage createvm --name "testvm" --register4. 修改vm属性:VBoxManage modifyvm "testvm" --... 阅读全文
posted @ 2014-09-05 20:43 scue 阅读(1644) 评论(0) 推荐(0) 编辑
摘要: 关于使用命令行配置Ubuntu pptp vpn连接,网上有很多的资料;但是要折腾起来还是需要花费很长时间的,现在已弄成了只需要几行命令就完事了;1. 安装依赖软件: sudo apt-get install pptp-linux2. 使用pptpsetup来配置: sudo pptpsetup... 阅读全文
posted @ 2014-08-24 12:46 scue 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 一行命令启动http-server总结:1. python2.x python2 -m SimpleHTTPServer 80002. python3.x python -m http.server 80003. twistd(python) twistd -n web -p 8000 --path... 阅读全文
posted @ 2014-08-22 19:01 scue 阅读(4405) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-08-19 01:07 scue 阅读(3220) 评论(0) 推荐(0) 编辑
摘要: 由于工作的需要,经常要切换JDK版本比如我HOME目录下有三个JDK版本:~/apt/jdk1.6.0_34 # JDK6~/apt/jdk1.7.0_67 # JDK7~/apt/jdk1.8.0_05 # JDK8比如编译Android整套系统源代码,Google建议使用JDK6在实现的工作中,... 阅读全文
posted @ 2014-08-14 15:28 scue 阅读(13499) 评论(0) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页