博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MIT 6.828 Development Environment Setup
阅读量:5086 次
发布时间:2019-06-13

本文共 873 字,大约阅读时间需要 2 分钟。

Summary for xv6 setup:

1. Sync down xv6 soure code

git clone git://github.com/mit-pdos/xv6-public.git

2. Make sure your gcc is ready, test using following command. If the gcc is not installed, install it.

objdump -i
sudo apt-get install -y build-essential gdb
sudo apt-get install gcc-multilib  (for 64-bit machine)

3. Build xv6-public source code

    Strictly follow below steps, or you might run into cases such as no bootable device

   cd parent/folder/of/xv6-public

   chmod -R 777 xv6-public

   cd xv6-public
   make clean
   make
   make qemu 

4. Make sure CPU virtualization support is enabled

    If you run into problems when issuing "make qemu", e.g. Could not access KVM kernel module. You can check if CPU virtualization is enabled, such as intel VT-X. This requires you enter BIOS settings when machine bootstraps.

   Refer   for more details.

转载于:https://www.cnblogs.com/lduan/p/9308484.html

你可能感兴趣的文章
BCD码(二-十进制)
查看>>
使用JavaScript扫描端口
查看>>
qdtuling.xyz 7.8
查看>>
Java工程师成神之路
查看>>
【canvas】先绘制标准图形,在进行图形变换
查看>>
两个命令:hdparm和iozone参数解释
查看>>
angular设置全局变量,修改监听变量
查看>>
alter column和modify column
查看>>
线性代数矩阵知识
查看>>
uni-app教程入门视频资料
查看>>
PHP 语法
查看>>
java程序在linux上持续运行方法 nohup 和 tmux
查看>>
Tomcat组件梳理—Service组件
查看>>
图解 HTTP 笔记(二)——简单的 HTTP 协议
查看>>
跟踪mqttv3源码(一)
查看>>
selenium点击(click)页面元素没有反应(报element not interactable)的一个案例
查看>>
获取配置文件头信息
查看>>
区块链社区
查看>>
MySQL linux错误处理
查看>>
JDK工具学习
查看>>