全部博文(230)
发布时间:2013-01-16 14:12:07
1. cd - 当前目录和之前所在的目录之间的切换2. cd + Alt . 用上次命令的最后一个目录路径要用上上次命令的最后一个目录,就Alt+.两次就可以了3. pushd popd 多个目录间切换在/usr和/etc/ssh和/etc/rc.d和当前路径之间切换,则可以在命令行下输入:cxu@cxu-desktop:~$ pushd /usr/usr ~cxu@cxu-desktop:/usr$ pushd /etc/ssh/etc/ssh /usr ~cxu@cxu-desktop:/etc/ssh$ pushd /......【阅读全文】
发布时间:2013-01-05 13:14:41
http://blog.chinaunix.net/uid-24774106-id-3404192.html systemtap是一个很有用的工具,熟悉我博客的可以看出我以前用过这个工具,这个工具的有点就在于高度的可定制,只要你对内核足够的熟悉,你可以观 测很多参数或者数据,得到Linux很多的信息。在这方面,淘宝的霸爷是大师级的高手。我最早接触systemtap就是从霸爷的博客里面接触的。 今天主要分享下systemtap安装的一些内容。Ubuntu是我在家用的linux发行版,一直以来用Ubuntu 10.04L......【阅读全文】
发布时间: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,
}