UNIX操作系统设计-数据缓冲区高速缓冲

《UNIX操作系统设计》第三章

数据缓冲区高速缓冲(buffer cache)简称高速缓冲。内核通过保持其内部数据缓冲池来减小对磁盘的存取频率,高速缓冲中含有最近被使用过的磁盘块的数据。

计算机系统结构复习

计算机系统结构考试复习

编译原理复习

编译基本过程:词法分析、语法分析、语义分析、中间代码生成、编译优化、目标代码生成

image-20200725133655985

线性代数概念复习

复习了一些简单的概念理解

ss服务器搭建

1
https://github.com/ishen7/Blog/issues/2
1
2
3
4
5
wget --no-check-certificate -O shadowsocks-all.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-all.sh

chmod +x shadowsocks-all.sh

./shadowsocks-all.sh 2>&1 | tee shadowsocks-all.log
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
启动脚本
启动脚本后面的参数含义,从左至右依次为:启动,停止,重启,查看状态。

Shadowsocks-Python 版:
/etc/init.d/shadowsocks-python start | stop | restart | status

ShadowsocksR 版:
/etc/init.d/shadowsocks-r start | stop | restart | status

Shadowsocks-Go 版:
/etc/init.d/shadowsocks-go start | stop | restart | status

Shadowsocks-libev 版:
/etc/init.d/shadowsocks-libev start | stop | restart | status

各版本默认配置文件
Shadowsocks-Python 版:
/etc/shadowsocks-python/config.json

ShadowsocksR 版:
/etc/shadowsocks-r/config.json

Shadowsocks-Go 版:
/etc/shadowsocks-go/config.json

Shadowsocks-libev 版:
/etc/shadowsocks-libev/config.json

windows 控制台 代理配置

1
2
3
4
5
6
7
8
9
set http_proxy=http://127.0.0.1:1080

set https_proxy=http://127.0.0.1:1080

set http_proxy_user=user
set http_proxy_pass=pass

set https_proxy_user=user
set https_proxy_pass=pass

KMP字符串匹配

KMP学习记录

操作系统笔记—进程管理

操作系统之进程管理复习记录。

操作系统笔记—概论

操纵系统之概论复习记录。

操作系统笔记—文件系统

操作系统之文件系统复习记录。

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×