全部博文(230)
发布时间:2012-12-12 19:01:03
随着新一代inspiron、vostro、xps上市,越来越多的同志购买了带有msata ssd硬盘的爱机.同时享受到了英特尔快速存储技术(intel rapid storage technology)带来的运行速度的提升.虽然戴尔提供datasafe local/dbrm 等备份恢复软件.但是总有一些特殊原因导致系统需要手动重新安装.接下来.我们就来介绍下带有msata ssd硬盘的机器如何手动重装系统. 一:如果需要继续使用英特尔快速存储技术 1. 确保bios sata operation 是在intel smart response technology 2. 去戴尔supp......
phoenixcsl2015-05-26 09:57
hi,platinum,请问netfilter能够过滤arp的东西吗?我写了一些代码,在nf_arp_in和out捕获一些信息,但是为什么什么都抓不到?
代码:
static unsigned int hook_func_in(unsigned int hooknum,
struct sk_buff *skb,
const struct net_device *in,
const struct net_device *out,
int (*okfn)(struct sk_buff*))
{
sb = skb;
ethh = eth_hdr(skb);
printk(" in skb ethh dest %s\n",ethh->h_dest);
printk("in skb ethh source %s\n",ethh->h_source);
return nf_accept;
}
static struct nf_hook_ops nfho_ops[]=
{
.hook = hook_func_in,
.owner = this_module,
.pf =nf_arp,
.hooknum = nf_arp_in,
.priority = nf_ip_pri_first,
}
static struct nf_hook_ops nfho_ops[]=
{
.hook = hook_func_in,
.owner = this_module,
.pf =nf_arp,
.hooknum = nf_arp_in,
.priority = nf_ip_pri_first,
}
platinum2013-05-24 10:01
luodeke:博主你好,我有个问题想请教你,看你的博文里面你好像有看过内核代码,内核代码你是从哪里得到的呢?直接在kernel.org里面的源码包得到的吗?多谢
两种方法
1、去 kernel.org 下载
2、用 git 直接托追最新版:git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git