上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 39 下一页
摘要: 修改CS,IP指令 阅读全文
posted @ 2016-05-08 21:33 PKICA 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 本文转载 http://www.cnblogs.com/chengmo/archive/2010/10/14/1851570.html ,感谢作者! shell可以在不调用第3方命令,表示不同进制数据。这里总结以下表示方法。shell 脚本默认数值是由10 进制数处理,除非这个数字某种特殊的标记法或 阅读全文
posted @ 2016-05-08 11:17 PKICA 阅读(2193) 评论(0) 推荐(0) 编辑
摘要: 1、find中的-exec参数 在当前目录下(包含子目录),查找所有txt文件并找出含有字符串"bin"的行 find ./ -name "*.txt" -exec grep "bin" {} \; 在当前目录下(包含子目录),删除所有txt文件 find ./ -name "*.txt" -exe 阅读全文
posted @ 2016-05-08 10:53 PKICA 阅读(22354) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #include "com_time.h" #include "com_func.h" /* * Definition of leap year: Rule 1: A year is 阅读全文
posted @ 2016-05-02 17:24 PKICA 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 陈皓《跟我一起写makefile》http://blog.csdn.net/haoel/article/details/2886/ 阅读全文
posted @ 2016-04-23 17:06 PKICA 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 一、在linux下搭建git环境1、创建Github账号,https://github.com2、Linux创建SSH密钥: [plain] view plain copy ssh-keygen ##一直默认就可以了 3、将公钥加入到Github账户信息Account Settings->SSH K 阅读全文
posted @ 2016-03-31 08:09 PKICA 阅读(252) 评论(0) 推荐(1) 编辑
摘要: 精简实用版git学习 第一节 GIT最初是由Linus Benedict Torvalds为了更有效地管理Linux内核开发而创立的分布式版本控制软件,与常用的版本控制工具如CVS、Subversion不同,它不必服务器端软件支持,速度和效率也有着相当程度的提高。 如果拥有CVS或者SVN的使用背景 阅读全文
posted @ 2016-03-30 22:51 PKICA 阅读(325) 评论(2) 推荐(2) 编辑
摘要: / 根目录 │ ├boot/ 启动文件。所有与系统启动有关的文件都保存在这里 │ └grub/ Grub引导器相关的文件 │ ├dev/ 设备文件 ├proc/ 内核与进程镜像 │ ├mnt/ 临时挂载 ├media/ 挂载媒体设备 │ ├root/ root用户的$HOME目录 ├home/ │ 阅读全文
posted @ 2016-03-27 21:37 PKICA 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <pthread.h>#include <stdlib.h>#define NHASH 29#define HASH(fp) (((unsigned long)fp)%NHASH)struct foo *fh[NHASH];pthread_mut 阅读全文
posted @ 2016-03-27 20:32 PKICA 阅读(238) 评论(0) 推荐(0) 编辑
摘要: http://www.cyberciti.biz/faq/howto-hpux-sshd-service-startup-shutdown/ http://searchnetworking.techtarget.com/tip/HP-UX-Secure-Shell-Part-5-The-host-c 阅读全文
posted @ 2016-03-17 23:22 PKICA 阅读(968) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 39 下一页