Ubuntu
devilkin64
这个作者很懒,什么都没留下…
展开
-
linux下which、whereis、locate、find 命令的区别
linux下which、whereis、locate、find 命令的区别转自:http://www.blogjava.net/tinysun/archive/2010/09/30/333460.html?opt=admin我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索。这些是从网上找到的资料,因为有时很长时间不会用到,当要用的时候经常弄混了,所以转载 2012-07-17 17:25:02 · 618 阅读 · 0 评论 -
Ubuntu下安装和配置Apache2
Copy From: http://www.blogjava.net/duanzhimin528/archive/2010/03/05/314564.html在Ubuntu中安装apache 安装指令:sudo apt-get install apache2 安装结束后: 产生的启动和停止文件是:/etc/init.d/apache2 启动:sudo apache2ct转载 2012-11-08 15:14:50 · 754 阅读 · 0 评论 -
nginx 500 Internal Server Error Permission Denied
查看了一下nginx进程ps aux|grep nginx发现都是nobody的进程,但是nginx的目录都是root用户,另外集群tomcat也是属于root用户,而且root启动,查看nginx.conf:user nobody改成:user root停止nginx -s stop重启nginx -c nginx.conf原创 2012-11-20 15:41:31 · 1857 阅读 · 0 评论 -
Linux平台Cpu使用率的计算
http://www.blogjava.net/fjzag/articles/317773.htmlLinux平台Cpu使用率的计算proc文件系统/proc文件系统是一个伪文件系统,它只存在内存当中,而不占用外存空间。它以文件系统的方式为内核与进程提供通信的接口。用户和应用程序可以通过/proc得到系统的信息,并可以改变内核的某些参数。由于系统的信息,如进程,是动态改变的,所以用户或转载 2012-12-11 11:37:53 · 806 阅读 · 0 评论 -
Linux文件按时间改名
Sample: mv test.log test_`date +%Y%m%d_%H%M`.log时间变量需要用引号` `或者$()括起来才能当作变量串使用. 用“”就直接成为字符在文件里其他扩展:原创 2013-01-14 12:11:15 · 1229 阅读 · 0 评论 -
SCP 传输不需要命令
以下是在机器Client的root和机器Server的root之间建立安全信任关系的步骤: 1. 在机器Client上root用户执行ssh-keygen命令,生成建立安全信任关系的证书。代码[root@Client root]# ssh-keygen -b 1024 -t rsa Generating public/private rsa key pa转载 2013-03-11 18:10:36 · 820 阅读 · 0 评论 -
Linux delete define files in correct dir and sub-dir
find ./ -name ".svn" -exec rm -rf {} \;find the files and replace in {}原创 2013-04-03 20:09:46 · 736 阅读 · 0 评论 -
Git 命令总结
1. 在分支上删除本地已经删除的文件. git ls-files --deleted | xargs git rm原创 2013-04-09 11:58:39 · 557 阅读 · 0 评论 -
Android SDK/NDK问题集
1. 运行adb出现这种错误:bash: ./adb: No such file or directory 但adb确实存在。那说明你用的是64位的Linux,没装32位运行时库,安装$ sudo apt-get install ia32-libs 2.ndk-build ErrorInvalid attribute name: pa原创 2013-06-21 12:40:07 · 1484 阅读 · 0 评论