bochs 2.4.2 ubuntu 安装运行问题《orange's 一个操作系统的实现》第二章 调试篇

用源码安装完后会遇到的问题:

《1》 运行可能碰到如下问题:
Event type: PANIC
Device: [     ]
Message: dlopen failed for module 'x': file not found

这是由于在安装 的时候,少安装 了个bochs -x
这个包可以在
http://packages. ubuntu . com/dapper/misc/bochs -x
找到
也可以在terminal下面输入
sudo apt-get install bochs -x
这样才算安装 完毕了。
《2》 、启动问题
点进入系统后控制台出现下面的提示:
Please choose one: [6] 6
00000000000i[     ] installing win32 module as the Bochs GUI
00000000000i[     ] using log file bochsout. txt
========================================================================
Event type: PANIC
Device: [MEM0 ]
Message: ROM: System BIOS must end at 0xfffff
A PANIC has occurred.   Do you want to:
  cont       - continue execution
  alwayscont - continue execution, and don't ask again.
               This affects only PANIC events from device [MEM0 ]
  die        - stop execution now
  abort      - dump core
Choose one of the actions above: [die]
问题原因:
在2. 3. 5以前的bochs 使用的BIOS-bochs -latest是64k的,那个时候需要加上
romimage: file=BIOS-bochs -latest,address=0xf0000
在2. 3. 5中的BIOS-bochs -latest更新了,变成了128k的,这个时候配置 需要改为
romimage: file=$BXSHARE/BIOS-bochs -latest
解决方法:
去掉配置 文件中的address那个
《3》bochs 的启动配置 文件bochsrc
一般网上的资料都会提示你安装 好后会有如下工具:
/usr/bin/bochs      Bochs 启动程序
/usr/bin/bximage     Bochs 带的制作磁盘镜像文件的工具
/usr/bin/bxcommit     把redolog放进flat磁盘镜像文件中去的交互工具
/usr/share/doc/bochs /bochsrc-sample. txt     Bochs 配置 文件的例子
/usr/share/bochs /BIOS-bochs -*     ROM BIOS镜像文件
/usr/share/bochs /VGABIOS-*     与VGA BIOS镜像文件相关的文件
/usr/bin/bochs -dlx     启动Bochs 中DLX linux的程序
/usr/share/bochs /dlxlinux/     DLX Linux的目录,包含它的磁盘镜像文件和配置 文件
/usr/share/bochs /keymaps/*. map     X11和SDL的keymap列表
其实在终端安装 的却没有第四、第七和第八项,就连第二第三项也要另外安装
       sudo apt-get install bximage
       sudo apt-get install bxcommit
所以,网上那些bochsrx在Ubuntu 是运行不了的,就因为这点,我搞近一个下午,开始我老以为是配置 文件不对呢。
普通的bochsrc:
romimage: file=$BXSHARE/BIOS-bochs -latest, address=0xf0000
vgaromimage: file=$BXSHARE/VGABIOS-lgpl-latest
但是在Ubuntu 下压根就没有VGABIOS-lgpl-latest
例如:
lzel@lzel-desktop:/usr/share/bochs $ ls
BIOS-bochs -latest  BIOS-bochs -legacy  BIOS-qemu-latest   keymaps
lzel@lzel-desktop:/usr/share/bochs $
后来我才发现,从终端下安装 bochs 时它把VGA专门作为了一个程序安装 在了/usr/share/vgabios/中了。
lzel@lzel-desktop:/usr/share/bochs $ ls /usr/share/vgabios/
vgabios. bin  vgabios. cirrus. bin  vgabios. cirrus. debug. bin  vgabios. debug. bin
lzel@lzel-desktop:/usr/share/bochs $
这样配置 文件就要改为:
   romimage: file=$BXSHARE/BIOS-bochs -latest
   megs:4
   floppya: image=. /boot. img,status=inserted
   vgaromimage: file=/usr/share/vgabios/vgabios. bin

boot:a                                                                                                                                                  
  log:out. bochs

 

后在是《orange's 一个操作系统的实现》第二章关于bochsrc配置文件内容的修改:

安装好bochs之后,我们需要对bochs进行配置,其实就是对文件bochrsc进行修改!
《orange's :一个操作系统的实现》的附带光盘里有一个已经配置好的bochrsc,但
是它是针对bochs2.3版本的,所以不能用!!!我们需要重新修改bochrsc!
首先将附带光盘里的chapter1子目录下的文件夹a 移动到/home/roothoo/,(主要是为
是让a.img 和 bochsrc在同一文件夹下),然后对bochrc进行修改如下:
注意,#是注释符号!即#之后的语句是无效的,其实#就相当于C+语言中的//
###############################################################
# Configuration file for Bochs
###############################################################

# how much memory the emulated machine will have
megs: 32

# filename of ROM images
#romimage: file=/usr/local/share/bochs/BIOS-bochs-latest
romimage: file=$BXSHARE/BIOS-bochs-latest
#vgaromimage: /usr/local/share/vgabios/vgabios.bin
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=0

# enable key mapping, using US layout as default.
keyboard_mapping: enabled=1, map=/usr/local/share/bochs/keymaps/x11-pc-us.map

注意看字体为红色的那两句!

修改好之后,别忘了保存!
最后,我们运行bochs
cd      /home/roothoo/a   #我们切换到a.img 和 bochsrc所在的文件夹,
bochs     -f    bochsrc    #以bochsrc为配置文件启动bochs
然后选择6,
然后再按c键,
OK!!!
ENJOY! -_-

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章