码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-12-14 23:07:49      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:

前言:本机环境ubuntu 14.04 bochs 2.4.5

 

一.下载

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

 

二.安装

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

tar vxzf bochs-2.4.5.tar.gz
cd bochs-2.4.5

  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.0-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

 1 #Configuration file for Bochs
 2 
 3 #how much memory the emulated machine will have
 4 megs: 32
 5 
 6 #filename of ROM images
 7 romimage: file=$BXSHARE/BIOS-bochs-latest
 8 vgaromimage: file=$BXSHARE/VGABIOS-lgpl-latest
 9 
10 #what disk images will be used
11 floppya: 1_44=a.img, status=inserted
12 
13 #choose the boot disk.
14 boot: floppy
15 
16 #where do we send log messages
17 log: bochsout.txt
18 
19 #disable the mouse
20 mouse: enabled=0
21 
22 #enable key mapping, using US layout as default
23 keyboard_mapping: enabled=1, 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.5
              Build from CVS snapshot, on April 25, 2010
========================================================================
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.

1. Restore factory default configuration
2. Read options from...
3. Edit options
4. Save options to...
5. Restore the Bochs state from...
6. Begin simulation
7. Quit now

Please choose one: [6] 

   此时默认选项为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源码安装及配置

标签:

原文地址:http://www.cnblogs.com/KoalaDream/p/5045875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!