全部博文(2759)
发布时间:2013-04-02 09:07:22
iptables [-t table] command [match] [-j target/jump][-t table] 指定规则表-t 参数用来,内建的规则表有三个,分别是:nat、mangle 和 filter,当未指定规则表时,则一律视为是 filter。个规则表的功能如下:nat:此规则表拥有 PREROUTING 和 POSTROUTING 两个规则链,主要功能为进行一对一、一对多、多对多等网址.........【阅读全文】
发布时间:2013-04-02 09:05:17
1,字符串转整型(一)#include <stdlib.h>int atoi(const char *nptr);字符串转化为整型long atol(const char *nptr);字符串转化为长整型long long atoll(const char *nptr);long long atoq(const char *nptr);字符串转化为long long 类型英文手册很简单,直接上说明:The atoi() function converts the initial.........【阅读全文】
发布时间:2013-04-02 09:04:02
先上代码再解释:#include <stdio.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#include <linux/limits.h>int main(){ int i; //关闭所有已经打开的文件.........【阅读全文】
发布时间:2013-04-02 09:03:40
作为Linuxer,必须具备一定的CLI操作能力。有时候用CLI会比用GUI会更方便快捷。以下列出我所知道的一些常用CLI软件,仅供参考。中文终端。据我所知,目前主要有两个解决方案:zhcon和fbterm。两个我都用过,zhcon较长时间不更新了,问题比较多。不小心加错参数,甚至可能会导致死机。所以我推荐fbterm,这个还是.........【阅读全文】