故意乌龟

文章
3
资源
0
加入时间
2年10月21天

使用hexo搭建个人博客遇到的问题

如何在linux上部署hexo服务器安装NodeJS作为hexo运行环境,命令:yum install nodejs国内直接使用npm可能会慢,使用淘宝npm镜像替代。使用方式是安装cnpm,以后用cnpm代替npm命令,安装命令:npm install -g cnpm --registry=https://registry.npmmirror.comhexo需要NodeJs是12以上,命令:cnpm install -g nn stable安装hexo,命令:cnpm install

xv6分析--mkfs源代码注释

xv6中mkfs.c的作用是构建一个跟文件系统镜像,添加用户指定的文件到这个镜像,本人水平有限,分析难免有错,各位大神指正,分析如下:#include #include #include #include #include #include #define stat xv6_stat // avoid clash with host struct stat#include