Tag Archives: Linux

Debian下编译最新的kvm-kmod 2.6.32-27

kvm-kmod在2.6.32内核下出了最新的版本-27,试编译了一下,因为换成了Debian,还真遇到了一些麻烦。

1、安装内核源文件、头文件
sudo apt-get install linux-headers-2.6.32-5-686 linux-headers-2.6.32-5-common gcc make
2、下载kvm-kmod源代码
wget http://cdnetworks-kr-2.dl.sourceforge.net/project/kvm/kvm-kmod/[......]

继续阅读

[转]Linux下用C语言遍历文件夹

转自:http://www.linuxdiyf.com/viewarticle.php?id=63720

学习了LINUX下用C语言遍历文件夹,一些心得

struct dirent中的几个成员:

d_type:4表示为目录,8表示为文件

d_reclen:16表示子目录或文件,24表示非子目录

d_name:目录或文件的名称

具体代码如下,仅供参考
#include <stdio.h>
#include <dirent.h>
#i[......]

继续阅读

备份下自己的screenrc配置

其实昨天刚开始用screen,感觉还不是很美观,不知道大家有没更好的配置。
hardstatus alwayslastline
hardstatus string "%{.bW}%-w%{.rY}%n %t%{-}%+w %=%{..G} %c:%s "
startup_message off
vbell off
bind ' ' title
一些操作:
Ctrl+a 然后按c 建立一个新的screen 会话
Ctrl+a 然后按d 将当前的screen 会话放在背景执行
Ct[......]

继续阅读