配置Typecho兼容wordpress链接
早先的wordpress链接是这样的:https://blog.vrqq.org/?p=15现在的Typecho是这样的:https://blog.vrqq.org/archives/213/我们要配置一个跳转,兼容一下。。配置:nginx with rewrite moduleTypecho 1.2Nginx配置添加如下配置:#rewrite ^/?p=([0-9]*)$ /jmp/$1 ...
Steam on MacOSX APFS file-system start failure
DescriptionMac OS High Sierra 10.13 + APFS(case sensitive)If u caught up these error, don't worry, u can launch ur steam by my step!Steam requires that '/Users/xxx/Library/Application Support/Steam...
Kernel 中断,多线程,并发。
全文预备教程【知乎专栏】Linux Kernel中断漫谈(上)https://zhuanlan.zhihu.com/p/26568566【知乎专栏】Linux Kernel中断漫谈(下)https://zhuanlan.zhihu.com/p/26612985Interrupt Descriptor Table我们以 先来看一下Linux的中断系统。IRQ触发调试这个真做不了,每个cpu的v...
Linux Kernel 之 /sys 目录
有关/sys的介绍参见此处 https://www.kernel.org/doc/html/latest/admin-guide/sysfs-rules.html全文来自:http://www.embetronicx.com/tutorials/linux/device-drivers/sysfs-in-linux-kernel/可以发现,这个目录跟驱动程序有关,里面我们看到的“文件”,都是...
Linux Kernel之 Module
编译环境参照源码 /Documentation/kbuild/modules.txt配置makefile,然后makeifneq ($(KERNELRELEASE),)
# kbuild part of makefile
obj-m := proTest.o
else
# normal makefile
KDIR ?= /lib/modules/`uname -r`/bu...