TL;DR 本文只用 Linux 自带的工具实现了一个可以将 TCP 流量打印出来的中间人代理程序(透明的)。 […]
Continue reading…
Posts tagged with 'linux'
坑爹的部署脚本
我司在开发机器上部署最新版的代码需要用到一些陈年的脚本,经历以下3个步骤: 执行一个叫 mkview.sh 脚 […]
Continue reading…
Linux 进程的生命周期
这篇文章将介绍 Linux 中一个进程是如何诞生的,如何结束的。进程有哪些的不同状态,这些状态如何进行转换。 […]
Continue reading…
Linux 文件系统 inode 介绍
平常使用计算机,我们的直觉是计算机里面分成了文件夹和文件两种东西。但是实际上在操作系统的文件系统中,文件夹也可 […]
Continue reading…
Kernel space, user space, and syscall
这篇文章介绍什么是 kernel space 和 user space,以及系统调用(System call, […]
Continue reading…