jyy - 操作系统
# 绪论: 1. 操作系统概述
# 操作系统三问
delay lines 延迟线, 1940 时代计算机的存储器
操作系统没有传说中那么复杂 (程序视角:对象 + API,硬件视角:一个 C 程序)
- 为什么要学操作系统:解锁 “实现一切” 的系统编程能力
- 什么是操作系统:应用视角 (一组对象 + API)、机器视角 (一个程序)
- 怎么学操作系统:答案就在代码中
# 熟悉 gdb
gdb debugging tutorial for beginners - linux tutorials - learn linux configuration
# 命令行工具
- 文件管理
cd
,pwd
,mkdir
,rmdir
,ls
,cp
,rm
,mv
,tar
- 文件检索
cat
,more
,less
,head
,tail
,file
,find
,tldr
,man
- 输入输出控制 - 重定向
>
, 管道|
,tee
,xargs
- 文本处理
vim
,grep
,awk
,sed
,sort
,wc
,uniq
,cut
,tr
- 正则表达式
- 系统监控
jobs
,ps
,top
,kill
,free
,dmesg
,lsof
# 熟悉 Unix 和 Linux
Harley Hahn’s Guide to Unix and Linux
GitHub - jlevy/the-art-of-command-line: Master the command line, in one page
# other notes
Virtualizing CPU means to turn a single into seemingly many cpus thus allowing many programs seemingly run at the same time.
Each process has its own virtual memory space(address space). OS maps the virtual memory spaces to physical memory spaces.
DRAM stores values in a volatile manner.
transitors -> logic gates -> assembly -> C
OS design goals:
- high performance
- minimize overheads(time/space/…)
- protection between apps(isolation)
- high degree of reliability
- other: energy-efficiency, security, mobility
trap: a spectial hardware instruction to initiate sys call
# 绪论: 2. 应用视角的操作系统
gcc -e a.c 可以获得展开宏的代码
什么是程序
- 你需要 Formal Semantics of Programming Languages, Fall 2021 by NJU 梁红瑾 不, 你不需要
什么是程序(源代码版)
- 状态机, 状态=堆+栈
- 函数调用在 C 程序就是创建一个 栈帧(stack frame, 里面包含状态, pc)
- 函数调用 = push frame(frame.pc = 入口)
- return 则是把新创建的这个栈帧删除 pop frame
什么是程序(二进制版)
- 还是状态机, 状态=寄存器+内存
- 程序自身能执行的指令只有计算(的话), 甚至不能退出自己. 所以有一条特殊的 syscall, 将 M, R 交给 OS 任其修改
# 获得的资料和视野
GitHub - ibraheemdev/modern-unix: A collection of modern/faster/saner alternatives to common unix commands. 介绍一些 modern unix 工具
数字电路课 Verilog
计算机系统基础(NJU 王慧妍等), imooc 上的 NJU 袁春风课作为理论
NJUESE|《数字集成电路I》|南京大学电子科学与工程学院大三下集成电路设计与集成系统专业核心课,微电子科学与工程专业选修课 - 知乎
(29 封私信 / 80 条消息) 你在南京大学上过最牛的课是什么? - 知乎