发布时间:2014-07-17 14:56:57
此文档为自行整理,非官方提供资料,仅供参考。疏漏之处敬请反馈。 对RAID进行操作很可能会导致数据丢失,请在操作之前务必将重要数据妥善备份,以防万一。......【阅读全文】
发布时间:2014-06-24 18:09:45
实用Iptables脚本分析首先在/usr/bin下建立一个脚本名为firewall,设定可执行权限#chmod +x /usr/bin/firewall下面我最这个脚本的关键文件做一些说明: 首先设定假设你想限制某IP(例如10.10.10.20),你只需将他们填入到BADIPS变量中,可以设定多个IP或网端,每个用空格分开.BADIPS="10.10.10.20 10.1.14.0/24"接.........【阅读全文】
发布时间:2014-06-24 17:06:34
Kernels 2.6.16 and newer provide a mechanism to have the kernel drop the page cache and/or inode and dentry caches on command, which can help free up a lot of memory. Now you can throw away that script that allocated a ton of memory just to get rid of the cache... To use /proc/sys/vm/drop_caches, .........【阅读全文】
发布时间:2014-06-24 16:17:52
http://coolnull.com/2195.htmlMemory Free对应下图free -m(-m是以MB作为单位)命令的freeMemory Buffers对应下图free -m命令的buffersCache Memory对应下图free -m命令的cache 第二行Mem: used/free与第三行(-/+ buffers/cache) used/free的区别在于使用的角度。第二行是从OS的角度来看,因为对于OS,buf.........【阅读全文】