摘要:作者:anton chuvakin 简介 在过去几年中,linux作为防火墙平台的应用显著增长。从早期1.2版内核的ipfwadm开始,linux的防火墙代码也走过了很长一段路程了。在2.4版的linux内核中,使用了netfilter体系。在最新的2.4版中,linux大大加强了安全性,例如:更好的加密支持和netfilter体系的使用。netfilter具有完全的向后兼容性。 本文将对ipta......
摘要:通常lkm用来为系统提供额外的功能,而不用重新编译内核,例如:加载设备驱动程序和其它的硬件驱动程序等。linux、solaris和bsd(free、net和open)等操作系统都使可加载内核模块实现系统的某些功能。某些rootkit能够利用这种机制,把自己作为内核的可加载模块运行,在内核层欺骗应用程序,而不用修改应用程序本身,因此比传统的rootkit具有更好的隐蔽性。现在lkm rootkit已......
出版商oreilly推出了开放图书项目“开放图书项目”(open books project)图书(一部分)有:
the cathedral and the bazaar
creating applications with mozilla
docbook: the definitive guide
embedding perl in html with mason
free as in freedom
learning debian/gnu linux
linux device drivers, 2nd edition
linux network administrator´s guide, 2nd edition mastering regular expressions
mysql reference manual
opensources: voices from the open source revolution
using samba, 2nd edition
version control with subversion
we the media
volume 6b: motif reference manual, 2nd edition
摘要:对于线程互斥的实现:windows有互斥体和临界区两个方法,linux有pthread库的互斥锁。windows线程同步一般使用临界区。
这里主要讨论windows临界区与linux互斥锁的区别。
windows:同一线程可以重复进入同一临界区(当然也要多次离开),而线程不被系统阻塞。
linux:同一线程不能重复进入同一临界区。否则线程被阻塞。
下面是我写的一个windows......