前言:本机环境ubuntu 14.04 bochs 2.4.5

一.下载

  官网 http://bochs.sourceforge.net/

二.安装

  1.将下载好的压缩包解压并进入该目录

tar vxzf bochs-2.4..tar.gz
cd bochs-2.4.

  2.安装编译程序依赖的包

sudo apt-get install build-essential

  3.检测环境,打开调试功能的开关

./configure --enable-debugger --enable-disasm

    (1)如出现 ERROR: X windows gui was selected, but X windows libraries were not found.  输入

sudo apt-get install xorg-dev

    (2)如出现 ERROR: pkg-config was not found, or unable to access the gtk+-2.0 package. 输入

sudo apt-get install libgtk2.-dev

  如有ERROR,依赖包安装好后,需重新configure

  (注*:我下载bochs-2.3.5时出现错误1,安装xorg-dev也无法解决,不知什么原因。还请前辈们多多指教!于是换成了bochs-2.4.5,亲测可用)

  4.编译

make

    (1)如出现 Error: collect2: error: ld returned 1 exit status

             make: *** [bochs] Error 1

    编辑boches-2.4.5/Makefile.in文件,找到 LIBS = ... 一行,在行尾加上 -lpthread,保存

    重新configure之后,再重新make,成功

  5.安装

sudo make install

三.配置

  如书中11页所言,安装好bochs后需要自己编写配置文件。存储路径却并未明确指出,但原书中后面有提示:“如果你输入一个不带任何参数的Bochs并执行之,那么Bochs将在当前目录顺序寻找以下文件作为默认配置文件:

  .bochsrc

  bochsrc

  bochsrc.txt

  bochsrc.bxrc(仅对windows有效)”

  意思是配置文件存放位置为你当前的工作目录,即存放.bin .asm .img的文件夹。

  于是我在工作目录下新建 bochsrc 文件,如书中代码2.1所示,并更改路径匹配我电脑中的bochs

 #Configuration file for Bochs

 #how much memory the emulated machine will have
megs: #filename of ROM images
romimage: file=$BXSHARE/BIOS-bochs-latest
vgaromimage: file=$BXSHARE/VGABIOS-lgpl-latest #what disk images will be used
floppya: 1_44=a.img, status=inserted #choose the boot disk.
boot: floppy #where do we send log messages
log: bochsout.txt #disable the mouse
mouse: enabled= #enable key mapping, using US layout as default
keyboard_mapping: enabled=, map=/usr/local/share/bochs/keymaps/x11-pc-us.map

  第7,8行的romimage和vgaromimage对应真实机器的BIOS和VGA BIOS,路径该如何设置呢?

  (注:此处不同系统,不同软件版本下,路径可能会有差异)

  方法一:在我的电脑里 /usr/local/share/doc/bochs下有示例文件,名为bochsrc-sample.txt,打开之后,查找romimage和vgaromimage可得到路径;

  方法二:以23行的map为例,用find命令,在/usr文件夹下查找x11-pc-us.map即可

find -name x11-pc-us.map

  配置文件写好之后,在当前目录下输入bochs,可看到:

========================================================================
Bochs x86 Emulator 2.4.
Build from CVS snapshot, on April ,
========================================================================
00000000000i[ ] reading configuration from bochsrc
------------------------------
Bochs Configuration: Main Menu
------------------------------ This is the Bochs Configuration Interface, where you can describe the
machine that you want to simulate. Bochs has already searched for a
configuration file (typically called bochsrc.txt) and loaded it if it
could be found. When you are satisfied with the configuration, go
ahead and start the simulation. You can also start bochs with the -q option to skip these menus. . Restore factory default configuration
. Read options from...
. Edit options
. Save options to...
. Restore the Bochs state from...
. Begin simulation
. Quit now Please choose one: []

   此时默认选项为6. Begin simulation

   回车,弹出Bochs虚拟机界面,成功!

   (注:若缺少配置文件,默认选项为2;若配置文件错误,则会报错)

参考资料: http://www.cnblogs.com/sobe/archive/2010/09/05/1818367.html

      http://m.blog.csdn.net/blog/u010066564/26068283

《一个操作系统的实现》学习笔记(一) bochs源码安装及配置的更多相关文章

  1. memcached学习笔记——存储命令源码分析下篇

    上一篇回顾:<memcached学习笔记——存储命令源码分析上篇>通过分析memcached的存储命令源码的过程,了解了memcached如何解析文本命令和mencached的内存管理机制 ...

  2. memcached学习笔记——存储命令源码分析上篇

    原创文章,转载请标明,谢谢. 上一篇分析过memcached的连接模型,了解memcached是如何高效处理客户端连接,这一篇分析memcached源码中的process_update_command ...

  3. Laravel学习笔记之Session源码解析(上)

    说明:本文主要通过学习Laravel的session源码学习Laravel是如何设计session的,将自己的学习心得分享出来,希望对别人有所帮助.Laravel在web middleware中定义了 ...

  4. Hadoop学习笔记(10) ——搭建源码学习环境

    Hadoop学习笔记(10) ——搭建源码学习环境 上一章中,我们对整个hadoop的目录及源码目录有了一个初步的了解,接下来计划深入学习一下这头神象作品了.但是看代码用什么,难不成gedit?,单步 ...

  5. nginx在Centos7.5下源码安装和配置

    安装nginx 安装nginx依赖包 yum install -y pcre-devel zlib-devel openssl-devel wget gcc tree vim 进入目录/root/se ...

  6. Sping学习笔记(一)----Spring源码阅读环境的搭建

    idea搭建spring源码阅读环境 安装gradle Github下载Spring源码 新建学习spring源码的项目 idea搭建spring源码阅读环境 安装gradle 在官网中下载gradl ...

  7. CentOS 7运维管理笔记(10)----MySQL源码安装

    MySQL可以支持多种平台,如Windows,UNIX,FreeBSD或其他Linux系统.本篇随笔记录在CentOS 7 上使用源码安装MySQL的过程. 1.下载源码 选择使用北理工的镜像文件: ...

  8. 学习Tensorflow,使用源码安装

    PC上装好Ubuntu系统,我们一步一步来讲解如何使用源码安装tensorflow?(我的Ubuntu系统是15.10) 安装cuda 根据你的系统型号选择相应的cuda版本下载 https://de ...

  9. 源码安装和配置zabbix 3.0 LST

    Zabbix是什么 Zabbix 是由Alexei Vladishev创建,目前由Zabbix SIA在持续开发和支持. Zabbix 是一个企业级的分布式开源监控方案. Zabbix是一款能够监控各 ...

随机推荐

  1. 基于log4net的帮助类Log

    using log4net; using System; using System.Collections.Generic; using System.Diagnostics; using Syste ...

  2. js_apply与call

    在ECAMScript3给Function的原型定义了两个方法,它们是Function.prototype.call和Function.prototype.apply. 本文详细介绍了apply与ca ...

  3. 简单的c#winform象棋游戏(附带源码)

    算法源自网络(网络源码连接:http://www.mycodes.net/161/6659.htm)   整体思路:用二维数组构建棋盘每一个数组元素封装为一个picturebox附带若干属性(例如:棋 ...

  4. android studio2.2 的Find Sample Code点击没有反应

    1 . 出现的问题描述:           右键点击Find Sample Code后半天没有反应,然后提示 Samples are currently unavailable for :{**** ...

  5. java复杂枚举

    枚举以红绿灯为例,红灯30s后为绿灯,绿灯45s后为黄灯,黄灯5s后为红灯.具体的枚举代码如下: public enum TrafficLamp{ RED(30){ public TrafficLam ...

  6. 有人要分享pjax吗?

    安装 1.在 composer.json 的 require里 加入 "yuanchao/pjax-for-laravel-5": "dev-master" 2 ...

  7. LeetCode 204 Count Primes

    Problem: Count the number of prime numbers less than a non-negative number, n. Summary: 判断小于某非负数n的质数 ...

  8. brew 安装 mysql

    在网上看到各种教程,都会出现ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.soc ...

  9. Delphi在创建和使用DLL的时候如果使用到string,请引入ShareMem单元

    当使用了长字符串类型的参数.变量时,如string,要引用ShareMem. 虽然Delphi中的string功能很强大,但若是您编写的Dll文件要供其它编程语言调用时,最好使用PChar类型.如果您 ...

  10. 《Mastering.Ext.JS. 》书上主要示例都搞了个样子出来,纪念