全部博文(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-16 14:10:25
ls,du,文件的洞,dump磁盘文件,......
发布时间:2013-01-05 13:14:41
http://blog.chinaunix.net/uid-24774106-id-3404192.html systemtap是一个很有用的工具,熟悉我博客的可以看出我以前用过这个工具,这个工具的有点就在于高度的可定制,只要你对内核足够的熟悉,你可以观 测很多参数或者数据,得到linux很多的信息。在这方面,淘宝的霸爷是大师级的高手。我最早接触systemtap就是从霸爷的博客里面接触的。 今天主要分享下systemtap安装的一些内容。ubuntu是我在家用的linux发行版,一直以来用ubuntu 10.04l......
发布时间:2013-01-02 19:30:34
好久没写博文了,今天心血来潮,与大家分享一下,欢迎大家随时和我联系! cu.platinum & gmail.com http://weibo.com/bjpt 现象 一次偶然的机会,发现一台服务器出现了极不正常的情况:cpu 消耗巨大 通过用 top 观察,发现 snmpd 进程持续走高 top - 16:51:31 up 546 days, 7:33, 1 user, load average: 2.28, 1.72, 1.39 tasks: 108 total, 4 running, 104......
发布时间:2013-01-01 13:42:30
按如下步骤操作就可以将svn仓库完整的转换为git仓库:1) 将远程svn仓库搬到本地(这一步主要是为了提高转换的速度,也可以忽略) 参考这篇文章:http://rongjih.blog.163.com/blog/static/335744612010620105546475/ 这里假设最终要转换的svn仓库为file:///tmp/test-svn2) 使用git svn clone命令开始转换 $ git svn clone file:///tmp/test-svn -t trunk -b branches -t......
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