From 67cb4b6efc137aa79d9fe68cbdc54853563a19f4 Mon Sep 17 00:00:00 2001 From: LightTime Date: Wed, 22 Feb 2017 21:05:02 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AB=98=E7=BA=A7=E6=93=8D=E4=BD=9C=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E8=AF=BE=E7=A8=8B=EF=BC=8COS=20demo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 简单的用法示意 --- ...75\234\347\263\273\347\273\237 OS demo.md" | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 "\351\253\230\347\272\247\346\223\215\344\275\234\347\263\273\347\273\237 OS demo.md" diff --git "a/\351\253\230\347\272\247\346\223\215\344\275\234\347\263\273\347\273\237 OS demo.md" "b/\351\253\230\347\272\247\346\223\215\344\275\234\347\263\273\347\273\237 OS demo.md" new file mode 100644 index 0000000..831329f --- /dev/null +++ "b/\351\253\230\347\272\247\346\223\215\344\275\234\347\263\273\347\273\237 OS demo.md" @@ -0,0 +1,36 @@ +# 高级操作系统 OS demo + +### 1 下载、配置流程 + +#### 1.1 安装虚拟机 + +​ 这个随意,只要装一个合适的Linux就行。在win10的VMware和Mac的Parallel都测试通过。 + +#### 1.2 安装Git + +​ 虽然这里不一定要用Git,从网页直接下载.zip也行,不过以后会常用,最好一起学习了。 + +#### 1.3 从Git获取这个repo + +```shell +$ git clone https://github.com/chyyuu/os_tutorial_lab.git +``` + +#### 1.4 一个可能出现的问题 + + ![q1](https://github.com/lighttime0/pictures/blob/master/q1.png) + +​ 疑似是在64位电脑进行32位编译时,有的库不一样。解决方案: + +```shell +$ sudo apt-get install gcc-multilib +``` + +#### 1.5 试用 + +![run_helloworld](https://github.com/lighttime0/pictures/blob/master/run_helloworld.png) + + + + +