《orange's,一个操作系统的实现》第30页
这是一个可以使用的bochs配置。本机上测试正确。
bochs安装之后会把一些虚拟硬件的相关文件保存在某些文件夹中,不同的电脑安装bochs之后这些文件位置不同。配置文件干的就是正确注明虚拟硬件文件的位置。要确保这些路径下真的有文件。
检验配置文件是否正确最直接的办法就是检验路径是否存在。
# Configuration file for Bochs
###############################################################
# how much memory the emulated machine will have
megs: 32
# filename of ROM images
#下面是虚拟的bios ROM文件位置
romimage: file=/usr/local/share/bochs/BIOS-bochs-latest
#下面是虚拟的显示器ROM文件位置
vgaromimage:file=/usr/local/share/bochs/VGABIOS-lgpl-latest
# what disk images will be used
floppya: 1_44=freedos.img, status=inserted
floppyb: 1_44=pm.img, status=inserted
# choose the boot disk.
boot: a
# 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的启动盘设为freedos.img。
在命令行运行bochs先进入DOS,格式化软盘b,然后退出DOS,退出bochs。在命令行将要运行的.com文件写入已经格式化的软盘b。然后启动bochs,启动dos,运行.com文件。
注意不是在dos中写入的.com文件,因为dos启动默认进入它的虚拟盘a,但是在该盘下面没有.com文件。.com文件是在ubuntu系统的当前文件夹下面。