是什么 control the behavior
assign privlege record operation record your operation in how a set of components
/core /luna /ui: static file /koko: ssh
IP分片
ping 的工作原理
ip protocol header size: 20bytes <= ip header size <= 60byte ip4 range: 0.0.0.0 ~ 255.255.255.255; 2 * 32 ip(4.3billion); why need ip layer? if we connect all computer, we must group the mac; mac address is hard for group; ip is a virtual address which easy to group , so we can build a big network; divide the addrees why? to reach the destination more efficiently
理解系统负载
https://cloud.tencent.com/developer/article/1710837
Linux进程上下文切换过程context_switch详解–Linux进程的管理与调度(二十一)
【原创】(一)Linux进程调度器-基础
Linux进程管理(二)进程调度
进程用户态 上下文切换需要保存哪些_Linux内核浅析-进程调度时机和过程
What is Context Switching in Operating System?
x86 Handling Exceptions INTERRUPTS
interrupt
进程切换:自愿(VOLUNTARY)与强制(INVOLUNTARY)
and interrupt handling
CPU Scheduling
Concurrency Models](http://tutorials.jenkov.com/java-concurrency/concurrency-models.html)
Thread Safety and Immutability
1. process structure 对要执行任务的一种抽象;包含一系列相关状态;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 struct task_struct { // Process status /* -1 unrunnable, 0 runnable, >0 stopped: */ long state; // Virtual memory structure struct mm_struct *mm; // Process number pid_t pid; // Pointer to parent process struct task_struct __rcu *parent; // Children form the list of natural children: struct list_head children; // Pointer to filesystem information: struct fs_struct *fs; // Open file information: struct files_struct *files; }; creat thread 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg) { struct task_struct *new_thread; // Allocate memory for new thread's task_struct new_thread = allocate_task_struct(); if (!
Understanding kubernetes networking: pods
Kubernetes Services simply visually explained
Kubernetes Ingress simply visually explained
Demystifying Kubernetes service discovery
浅谈Kubernetes Service负载均衡实现机制
Kubernetes| 找到容器不容易:Service、DNS 与服务发现
create servie and servie types; service implement overivew discuss service and k8s ingress what: 提供稳定的ip and dns name 以方便访问容器
types:
cluster ip node port 外部: proxy load balancer ingress types cluster ip: internal ip + port
1 2 3 4 5 6 7 8 9 10 11 12 apiVersion: v1 kind: Service metadata: name: service-python spec: ports: - port: 3000 protocol: TCP targetPort: 443 selector: run: pod-python type: ClusterIP nodePort: cluster ip + node ip, port
图解 Linux 文件系统
Nonblocking I/O
从内核文件系统看文件读写过程
files
图解|什么是缺页错误Page Fault
Processes and Tasks
INTRODUCTION TO THE LINUX VIRTUAL FILESYSTEM (VFS) – PART I: A HIGH-LEVEL TOUR
Linux in Depth - 文件系统及 Socket 源码解析
Linux内核Page Cache和Buffer Cache关系及演化历史
深度理解 Linux 读取文件过程!
原来8张图,就可以搞懂「零拷贝」了
Linux I/O 原理和 Zero-copy 技术全面揭秘
操作系统 I/O 全流程详解
data structure 1 2 openfile table: file-> node 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 // process struct task_struct { // .
如何理解OSI或TCP/IP协议的层次划分和结构 ? - 向往美的回答 - 知乎
Bandwidth Vs. Latency: Which Is More Important?
overview what: 分层协议,解决如何在互联网传输数据
history:
IETF(前身国防部) 指定ip层以上相关协议 key rfc: rfc 1122, define layer; rfc 2616, define http1.1 IEEE管指定 物理层和链路层的协议 layer detail osi vs tcp/ip:
tcp/ip: 实际使用的模型,更简化 osi: 概念模型,未被实现 tcp/ip layers: linker layer internet layer transport layer: application layer 链路层(linker layer): 局域网内如何传输 protocol list: mac
internet layer: 网路层如何路由 protocol list: ip
transport layer: 点对点传输 protocol list:tcp,udp
application layer: 应用相关数据 protocol: ethernet