Introduction to Linux monitoring and alerting https://www.redhat.com/sysadmin/linux-monitoring-and-alerting mail 的命令挺有意思的. Have you ever wanted to set up a process monitor that alerts you when it's offline without spending thousands of budget dollars…
A Quick Introduction to Linux Policy Routing 29 May 2013 In this post, I’m going to introduce you to policy routing as implemented in recent versions of Ubuntu Linux (and possibly other Linux distributions as well, but I’ll be using Ubuntu 12.04 LTS)…
在搜索网上资料过程中,这是感觉最简洁有效的一篇文章,特进行转帖记录,并根据情况对部分内容进行了修改.原帖传送门:Linux下的Autoconf和AutoMake 1.工具安装在开始使用autoconf和automake之前,首先确认你的系统安装有GNU的如下软件: automake/autoconf/m4/perl.如果你需要产生共享库(shared library)则还需要GNU Libtool.如果使用RedHat的Linux版本,这几个工具会自动安装,我试验中用SUSE11也安装了所有程序…
Introduction to Linux Threads A thread of execution is often regarded as the smallest unit of processing that a scheduler works on. A process can have multiple threads of execution which are executed asynchronously. This asynchronous execution brings…
Introduction to text manipulation on UNIX-based systems https://www.ibm.com/developerworks/aix/library/au-unixtext/index.html     A basic tenets of UNIX philosophy is to create programs (or processes) that do one thing, and do that one thing well. It…
NotePad++编辑Linux中的文件 https://blog.csdn.net/chengqiuming/article/details/78882692 原作者 未经允许不允许转帖 加密自己参考. 一 应用场景 Windows中的NotePad++连接Centos 7,然后编辑centos 7中的文件,操作很方便.   二 安装NotePad++ 下载地址:https://notepad-plus-plus.org/download/v7.5.3.html   三 下载NppFTP插件…
Windows和Linux对决(多进程多线程) https://blog.csdn.net/world_2015/article/details/44920467 太长了 还没看完.. 还是没太理解好呢.. 关于 windows 和 linux的东西 先放这里 晚上有时间仔细啃一下. 并行程序设计分为共享内存和消息驱动(其实就是分布式内存)两种, 共享内存:所有CPU共内存,所有CPU由一个操作系统控制的,例如Windows和Linux/UNIX,目前流行的多核.多CPU机器都是属于这种: 消息…
理解 Linux 的虚拟内存 https://www.cnblogs.com/zhenbianshu/p/10300769.html 段页式内存 文章了里面讲了 页表 没讲段表 记得最开始的时候 学习过段表 但是已经想不起来了.. 感觉记性真是不好. TLB 进行内存地址的转换 性能还是很快的 还有一个 cache的分组 策略还是什么 几ways 的 其实 一直没有搞清楚 为什么 virt 的内存那么高 但是resident 的内存反而不够高 一些htop 里面的参数都理解的不够好 需要继续学习…
新的Linux后门开始肆虐 主要攻击中国服务器 https://www.cnbeta.com/articles/tech/815639.htm 一种新的 Linux 系统后门已经开始肆虐,并主要运行在位于中国的 Linux 服务器上.据 ZDNet 报导,该恶意软件名为 SpeakUp,三周前由 Check Point 安全研究人员发现.研究人员表示黑客利用 PHP 框架 ThinkPHP 的漏洞 CVE-2018-20062 进行攻击,一旦 SpeakUp 入侵易受攻击的系统,那么黑客就可以使…
浅谈Linux下的五种I/O模型 https://www.cnblogs.com/chy2055/p/5220793.html  一.关于I/O模型的引出 我们都知道,为了OS的安全性等的考虑,进程是无法直接操作I/O设备的,其必须通过系统调用请求内核来协助完成I/O动作,而内核会为每个I/O设备维护一个buffer.如下图所示: 整个请求过程为: 用户进程发起请求,内核接受到请求后,从I/O设备中获取数据到buffer中,再将buffer中的数据copy到用户进程的地址空间,该用户进程获取到数…