计算机网络 Wireshark的使用
作业,顺便记录一下Wireshark的使用方法
FDU Operating System Lab2
薪火相传
因为中途才开始写博客,一些配置上的问题可能没讲清楚。目前只是自己做一个记录吧。
如果能帮到你理解这个lab就好啦
环境:WSL + xv6
LAB2:https://docs.qq.com/slide/DR2VtU3Fvb2hGWEN0
实验准备切换到本次实验的环境分支下
1234git commit -am lab0git fetchgit checkout syscallmake clean
随后按要求修改相应 kernel 与 user 文件夹下的文件,以任务1的 procnum 为例,其余同理。
在 kernel/syscall.h 中,添加一个宏定义
1#define SYS_procnum 22
然后在 kernel/syscall.c 指定系统调用的主体函数,即第22号System call会调用 sys_procnum 这个指针指向的函数
123456extern uint64 sys_procnum(void);static uint64 (*syscalls[])(void) = {//...[SYS_procnum] sys_procnum ...
自定义页面
介绍如何在博客上部署自定义页面
博客书写指南
介绍博客文章的书写方法
hexo&butterfly配置教程
hexo&butterfly 配置个性化魔改教程
博客时间线
建站时间线~
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment