摘要: 获取更多的信息。 Alternatively, the script patch-kernel can be used to automate this process. It determines the current kernel version and applies any patches found. 还有个办法,脚本patch-kernel可以自动完成这个过程。它判断当前内核的版本号... 阅读全文
posted @ 2010-03-13 23:36 tungli 阅读(413) 评论(0) 推荐(0) 编辑
摘要: Linux kernel release 2.6.xx <http://kernel.org/>These are the release notes for Linux version 2.6. Read them carefully,as they tell you what this is all about, explain how to install thekernel, ... 阅读全文
posted @ 2010-03-13 23:35 tungli 阅读(951) 评论(0) 推荐(0) 编辑
摘要: linux的压缩/解压缩命令(tar,gzip等)及示例tar命令 [root@linux ~]# tar [-cxtzjvfpPN] 文件与目录 ....参数:-c :建立一个压缩文件的参数指令(create 的意思);-x :解开一个压缩文件的参数指令!-t :查看 tarfile 里面的文件!特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存在!因为不可能同时压缩与解压缩。-z... 阅读全文
posted @ 2010-03-13 23:00 tungli 阅读(1330) 评论(0) 推荐(0) 编辑
摘要: Linux主机名Hostname详解 关键字: linux主机名hostname详解 1、 什么是主机名:   无论在局域网还是INTERNET上,每台主机都有一个IP地址,是为了区分此台主机和彼台主机,也就是说IP地址就是主机的门牌号。但IP地址不方便记忆,所以又有了域名。域名只是在公网(INtERNET)中存在(以实验为目的的局域网域网实验性除外),每个域名都对应一个IP地址,但一个 IP地址... 阅读全文
posted @ 2010-03-13 18:04 tungli 阅读(2966) 评论(0) 推荐(0) 编辑
摘要: undefined reference to `sem_init' undefined reference to `sem_post' undefined reference to `sem_wait' 编译选项需要加入一个多线程 gcc -pthread -o outfile.out filename.c [source code] #include "sched.h" #include... 阅读全文
posted @ 2010-03-11 22:18 tungli 阅读(6303) 评论(0) 推荐(0) 编辑
摘要: 函数pthread_join用来等待一个线程的结束。函数原型为:  extern int pthread_join __P ((pthread_t __th, void **__thread_return));  第一个参数为被等待的线程标识符,第二个参数为一个用户定义的指针,它可以用来存储被等待线程的返回值。这个函数是一个线程阻塞的函数,调用它的线程将一直等待到被等待的线程结束为止,当函数返回时... 阅读全文
posted @ 2010-03-11 21:48 tungli 阅读(44244) 评论(0) 推荐(1) 编辑
摘要: kill -s SIGUSR1 pid 阅读全文
posted @ 2010-03-11 17:31 tungli 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 功能描述:设定对信号屏蔽集内的信号的处理方式(阻塞或不阻塞)。用法:#include <signal.h>int sigprocmask(int how, const sigset_t *set, sigset_t *oldset);参数:how:用于指定信号修改的方式,可能选择有三种SIG_BLOCK //加入信号到进程屏蔽。SIG_UNBLOCK //从进程屏蔽里将信号删除。SIG... 阅读全文
posted @ 2010-03-11 16:05 tungli 阅读(3617) 评论(0) 推荐(0) 编辑
摘要: linux下使用math.h编译时加上-lm链接到标准库 阅读全文
posted @ 2010-03-11 14:52 tungli 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: linux 的系统时间有时跟硬件时间是不同步的Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。当Linux启动时,硬件时钟会去读取系统时钟的设置,然后系统时钟就会独立于硬件运作。Linux中的所有命令(包括函数... 阅读全文
posted @ 2010-03-11 13:14 tungli 阅读(10015) 评论(0) 推荐(0) 编辑