上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 44 下一页
摘要: 《Linux内核设计与实现》 读书笔记(1)--内核简介 简单介绍内核相关的基本概念。 单内核和微内核 内核版本号 1.单内核和微内核 -- 原理 优势 劣势 单内核 整个内核都在一个大内核地址空间上运行。 1. 简单。2. 高效:所有内核都在一个大的地址空间上,所以内核各个功能之间的调用和调用函数 阅读全文
posted @ 2021-08-22 20:58 michaelchengjl 阅读(127) 评论(0) 推荐(0)
摘要: 《Linux内核设计与实现》 读书笔记 https://github.com/michaelcjl/linux_kernel_wiki 《Linux内核设计与实现》 读书笔记(1)--内核简介 《Linux内核设计与实现》 读书笔记(2)--内核开发准备 《Linux内核设计与实现》 读书笔记(3) 阅读全文
posted @ 2021-08-22 18:51 michaelchengjl 阅读(57) 评论(0) 推荐(0)
摘要: Linux 运维常用命令 sudo rm /var/log/syslog # 清除日志 sudo service rsyslog restart # 重启日志服务 who -b # Linux系统查看最后重启时间 Debian下修改系统时间的方式 # 设置时区 # sudo cp /usr/shar 阅读全文
posted @ 2021-08-20 20:59 michaelchengjl 阅读(112) 评论(0) 推荐(0)
摘要: Ubuntu1804 安装 KVM KVM(Kernel-based Virtual Machine,基于内核的虚拟机)是面向 Linux 系统的开源虚拟化解决方案,KVM 使用 Intel VT 或 AMD-V 等虚拟化扩展提供虚拟化功能。当我们在 Linux 机器上安装 KVM 时,它都会通过加 阅读全文
posted @ 2021-08-19 21:24 michaelchengjl 阅读(826) 评论(0) 推荐(0)
摘要: MobaXterm以图形界面GUI形式登录打开远程linux ubuntu服务器桌面 1. on ubuntu 18.04 + First of install the openssh-server sudo apt-get install openssh-server Edit /etc/ssh/ 阅读全文
posted @ 2021-08-18 21:17 michaelchengjl 阅读(8083) 评论(0) 推荐(1)
摘要: VSCODE 插件推荐 Gitlens插件 查看代码提交 (可以看是哪个文件是谁写的,什么时候改的) Remote Development (远程开发) Markdown All in One (让vscode支持markdown .md文件) Markdown Preview Enhanced ( 阅读全文
posted @ 2021-08-12 17:41 michaelchengjl 阅读(307) 评论(0) 推荐(0)
摘要: C 语言 sleep 函数 Sleep函数: 功 能: 执行挂起一段时间 用 法: unsigned sleep(unsigned seconds); 注意: 在VC中使用带上头文件#include <windows.h>,在Linux下,gcc编译器中,使用的头文件因gcc版本的不同而不同#inc 阅读全文
posted @ 2021-08-06 20:20 michaelchengjl 阅读(1465) 评论(0) 推荐(0)
摘要: C语言判断文件夹或者文件是否存在的方法 方法一:access函数判断文件夹或者文件是否存在 函数原型: int access(const char *filename, int mode); 所属头文件:io.h filename:可以填写文件夹路径或者文件路径 mode: 0 (F_OK) 只判断 阅读全文
posted @ 2021-07-28 15:09 michaelchengjl 阅读(1483) 评论(0) 推荐(0)
摘要: 软件设计原则 https://blinkfox.github.io/2018/11/24/ruan-jian-she-ji/ruan-jian-cheng-xu-she-ji-yuan-ze/ 阅读全文
posted @ 2021-07-20 21:05 michaelchengjl 阅读(34) 评论(0) 推荐(0)
摘要: github出现 fatal: could not read Username for 'https://github.com': No such file or directory 编辑~/.gitconfig并添加以下内容: [url "git@github.com:"] insteadOf = 阅读全文
posted @ 2021-07-20 15:21 michaelchengjl 阅读(1107) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 44 下一页