随笔分类 -  linux内核

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
摘要:http://blog.sina.com.cn/s/articlelist_1029388674_11_1.html Linux 性能优化之 IO 子系统(一) http://blog.sina.com.cn/s/articlelist_1029388674_11_1.html Linux 性能优化 阅读全文
posted @ 2016-07-02 10:48 zengkefu 阅读(2238) 评论(0) 推荐(0) 编辑
摘要:http://hustcat.github.io/ http://www.cnblogs.com/hustcat/p/3283955.html http://blog.sina.com.cn/s/articlelist_2198387841_0_1.html linux 核心配制 mount -t 阅读全文
posted @ 2016-07-02 10:30 zengkefu 阅读(834) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/hustcat/p/3283955.html http://www.cnblogs.com/zengkefu/p/5639200.html http://www.cnblogs.com/zengkefu/p/4943836.html http://www 阅读全文
posted @ 2016-07-02 10:23 zengkefu 阅读(10288) 评论(0) 推荐(0) 编辑
摘要:1. page cache linux操作系统默认情况下写都是有写缓存的,可以使用direct IO方式绕过操作系统的写缓存。当你写一串数据时,系统会开辟一块内存区域缓存这些数据,这块区域就是我们常说的page cache(操作系统的页缓存)。查看系统内存常用的命令有:vmstat、free、top 阅读全文
posted @ 2016-07-02 10:04 zengkefu 阅读(8367) 评论(1) 推荐(1) 编辑
摘要:http://www.cnblogs.com/hyq20135317/p/5422516.html http://mooc.study.163.com/course/USTC-1000029000 阅读全文
posted @ 2016-06-25 21:42 zengkefu 阅读(325) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-29075379-id-3944364.html 阅读全文
posted @ 2016-06-22 11:59 zengkefu 阅读(265) 评论(0) 推荐(0) 编辑
摘要:man 5 proc http://blog.itpub.net/15480802/viewspace-753819/ file-max:定义LINUX 系统 所有进程 open files 的限制 file-nr:显示了当前linux 系统 open files 的状态 nr-open:单个进程m 阅读全文
posted @ 2016-06-21 10:17 zengkefu 阅读(1962) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/15480802/viewspace-734062 什么是open file An open file may be a regular file, a directory, a block special file, a character specia 阅读全文
posted @ 2016-06-21 10:16 zengkefu 阅读(1398) 评论(0) 推荐(0) 编辑
摘要:Linux 进程句柄限制总结 受网上很多帖子影响,一直认为Unix、Linux下单个进程打开句柄数目上限是65535,不能超过这个值,最近从网上看到另一种描述,在SUSE、RedHat都测试了一下,单个进程完全可以支持到100万以上的句柄。 关于系统文件句柄的几个限制从大往小排列: /proc/sy 阅读全文
posted @ 2016-06-21 09:43 zengkefu 阅读(2685) 评论(0) 推荐(0) 编辑
摘要:使用四种框架分别实现百万websocket常连接的服务器 著名的 C10K 问题提出的时候, 正是 2001 年。这篇文章可以说是高性能服务器开发的一个标志性文档,它讨论的就是单机为1万个连接提供服务这个问题,当时因为硬件和软件的**,单机1万还是一个非常值得挑战的目标。但是时光荏苒,随着硬件和软件 阅读全文
posted @ 2016-06-21 09:06 zengkefu 阅读(14822) 评论(0) 推荐(1) 编辑
摘要:http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/filesystems/proc.txt?id=9cfe015aa424b3c003baba3841a60dd9b5ad319b htt 阅读全文
posted @ 2016-06-16 20:35 zengkefu 阅读(9560) 评论(0) 推荐(0) 编辑
摘要:http://cs.nyu.edu/~gottlieb/courses/2000s/2007-08-fall/arch/lectures/lecture-23.html http://cs.nyu.edu/~gottlieb/courses/2000s/2007-08-fall/arch/lectu 阅读全文
posted @ 2016-06-16 09:46 zengkefu 阅读(561) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/drshenlei/article/category/551407 http://blog.csdn.net/drshenlei/article/category/551407 http://blog.csdn.net/drshenlei/article/c 阅读全文
posted @ 2016-06-16 09:29 zengkefu 阅读(13994) 评论(1) 推荐(1) 编辑
摘要:原文作者:Gustavo Duarte 原文地址:http://duartes.org/gustavo/blog/post/what-your-computer-does-while-you-wait Page Cache, the Affair Between Memory and Files 工 阅读全文
posted @ 2016-06-16 09:22 zengkefu 阅读(645) 评论(0) 推荐(0) 编辑
摘要:The page cache caches pages of files to optimize file I/O. The buffer cache caches disk blocks to optimize block I/O. Page Cache缓存文件内容以优化文件I/O,Buffer 阅读全文
posted @ 2016-06-16 09:15 zengkefu 阅读(985) 评论(0) 推荐(0) 编辑
摘要:lnux内核的malloc实现(Oracle的cache buffer影子) 本文原创为freas_1990,转载请标明出处:http://blog.csdn.net/freas_1990/article/details/12845059 本文介绍一下malloc的原理,对mm感兴趣(或者对Orac 阅读全文
posted @ 2016-06-16 09:08 zengkefu 阅读(518) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/pi9nc/article/details/23334659 http://blog.csdn.net/pi9nc/article/details/23334659 注:本分类下文章大多整理自《深入分析linux内核源代码》一书,另有参考其他一些资料如《li 阅读全文
posted @ 2016-06-16 09:03 zengkefu 阅读(2462) 评论(1) 推荐(0) 编辑
摘要:https://www.ibm.com/developerworks/cn/linux/l-cache/ 1 前言 自从诞生以来,Linux 就被不断完善和普及,目前它已经成为主流通用操作系统之一,使用得非常广泛,它与 Windows、UNIX 一起占据了操作系统领域几乎所有的市场份额。特别是在高性 阅读全文
posted @ 2016-06-16 08:48 zengkefu 阅读(482) 评论(0) 推荐(0) 编辑
摘要:http://nanxiao.me/category/%E3%80%8Anix-hacking%E3%80%8B%E6%9D%82%E5%BF%97/ 月刊 https://github.com/NanXiao/golang-101-hacks http://nanxiao.me/ http://n 阅读全文
posted @ 2016-06-14 14:34 zengkefu 阅读(526) 评论(0) 推荐(0) 编辑
摘要:http://nanxiao.me/install-lttng/ http://packages.efficios.com/ http://lttng.org/ http://lttng.org/download/#git-repos http://lttng.org/files/lttng-too 阅读全文
posted @ 2016-06-14 14:07 zengkefu 阅读(413) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页