摘要: 修改ssh相关config https://cloud.tencent.com/developer/article/1538305 其中,端口可以设置成 2222 以防万一 然后在wsl 中执行如下命令,查看ip hostname -I 然后登录 ssh -p xx user@ip xx 为 端口号 阅读全文
posted @ 2022-04-28 09:56 dou_fu_gan 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 背景介绍 要做系统结构实验,学校和华为云合作使用华为云的 aarch64 裸机,需要使用 ssh 远程开发,笔者为了追求良好的开发体验,决定使用 vscode 开发,实验环境配置过程中遇到了两个问题,在此记录一下(非常痛苦的被折磨了一上午+一中午) windows ssh 报错:openssh wi 阅读全文
posted @ 2022-04-20 14:15 dou_fu_gan 阅读(2434) 评论(0) 推荐(0) 编辑
摘要: 如果使用windows terminal(其实就是powershell)那么只需要在windows 中安装 Fira Code 即可,但是如果需要让wsl 中的vscode 也用Fira Code 就必须在 wsl 中安装这个字体 链接如下:https://blog.csdn.net/weixin_ 阅读全文
posted @ 2022-04-18 16:00 dou_fu_gan 阅读(258) 评论(0) 推荐(0) 编辑
摘要: https://hluk.github.io/CopyQ/ 阅读全文
posted @ 2022-03-20 13:30 dou_fu_gan 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 系统调用 https://gitee.com/oscomp/testsuits-for-oskernel/blob/main/oscomp_syscalls.md 评测程序 https://gitee.com/oscomp/testsuits-for-oskernel/tree/main/ 大赛官网 阅读全文
posted @ 2022-03-16 17:19 dou_fu_gan 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 介绍:因为要做操作系统,所以需要先用rust标准库实现一系列操作系统中进程、内存、文件等操作所需要的算法,练习rust的同时以便后面用到 进程同步 1.进程控制块 2.互斥锁 mutex 3.消费者生产者问题 4.读者写者问题 5.哲学家进餐问题 6.管程 处理机调度 1.作业调度:FCFS、SJF 阅读全文
posted @ 2022-03-14 14:10 dou_fu_gan 阅读(82) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/1963485/202203/1963485-20220310165005047-872185948.png) 阅读全文
posted @ 2022-03-10 16:51 dou_fu_gan 阅读(44) 评论(0) 推荐(0) 编辑
摘要: rust 模块路径 转载 https://blog.csdn.net/wowotuo/article/details/107591501 rust 项目编译类型 转载 https://blog.51cto.com/u_15127605/2763424 阅读全文
posted @ 2022-03-08 10:49 dou_fu_gan 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 介绍 k210的datasheet主要讲了与外设相关的内容,k210并不支持最新的完整的riscv指令集,而是实现了一部分。本文想要通过汇编来一点点摸索k210的寄存器,布局,mmu,缓存等结构 相关链接:https://github.com/rcore-os/rCore-Tutorial/issu 阅读全文
posted @ 2022-03-05 13:06 dou_fu_gan 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 如上图所示, 不使用sudo,报错没有权限 使用sudo,报错找不到命令 只好chmod 777一下了 阅读全文
posted @ 2022-02-28 19:22 dou_fu_gan 阅读(112) 评论(0) 推荐(0) 编辑