美文网首页
学习笔记 |《ORANGE’S:一个操作系统的实现》| (一)

学习笔记 |《ORANGE’S:一个操作系统的实现》| (一)

作者: WinnJay | 来源:发表于2018-04-04 11:05 被阅读0次

    实验环境

    Ubuntu 16.04 + bochs 2.4.6

    直接获取

    可以直接使用命令下载,由于版本原因,可能会和书中的操作不一样导致困惑。

    sudo apt-get install
    

    所以下面是下载源码包进行编译安装的过程

    下载bochs

    https://sourceforge.net/projects/bochs/files/bochs/2.4.6/

    在这个网站下载bochs 2.4.6.tar.gz压缩包

        tar vxzf bochs-2.4.6.tar.gz
        cd bochs-2.4.6
    

    安装编辑依赖环境

     sudo apt-get install build-essential xorg-dev libgtk2.0-dev
    

    在configure之后会出现Makefile文件,修改Makefile文件在找到 LIBS = ... 一行,在行尾加上 -lpthread,保存

    ps:也有看过一篇是修改Makefile.in文件的但是我是修改Makefile之后才可以的

    如果没有加这个参数后面编译会失败。

    配置参数打开调试功能开关

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

    编译

    make
    

    安装

    make install
    

    出现错误的话先make clean之后再重新configure,一般出现错误都是没有安装环境包或者make失败是因为上面没有加上编译线程的库,笔者之前出现过这几个错误。

    输入命令

    bochs
    

    如果能显示以下代码表示安装成功

    ========================================================================
                       Bochs x86 Emulator 2.4.6
             Build from CVS snapshot, on February 22, 2011
                   Compiled at Nov 14 2017, 22:04:17
    ========================================================================
    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] 
    

    正如书中所说,我们的bochs运行需要配置文件,所以我们可以建立一个文件夹专门用于运行bochs


    配置文件

    下面是我的配置文件↓

    # Configuration file for Bochs
    ###############################################################
    
    # how much memory the emulated machine will have
    megs: 32
    
    # 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: 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
    

    根据书中所说,主要是romiage和vgaromimage两个的路径需要与自己系统相符,其次是软盘文件的名词需要对应还有boot的设备要配置对(如果有多个设备的话)书中的代码于文尾链接。

    把书中bochsrc和a.img拷入创建的文件夹就可以运行了,运行结果如书中所示,会有红色的P。

    操作命令

    具体的命令如书中所示,按c运行之后要按ctrl+c中断才能进行后续输入,按q是退出虚拟机。


    </br>

    在Bochs中使用Dos的步骤

    </br>

    1. 在文末下载的随书源码压缩包找到相应的章节,找到里面的FreeDos.img,pm.img复制到自己的bochs目录中。(或者安装书中所说去bochs官网下载FreeDos)

    2. 更改我们的bochsrc文件,在floppy那里改为下面这样

       floppya: 1_44=freedos.img, status=inserted
      
       floppyb: 1_44=pm.img, status=inserted
      
    3. 修改我们的代码,把07c00h改为0100h重新编译,因为Dos与系统的载入位置不同。

       nasm pmtest1.asm -o pmtest1.com
      
    4. 制作软盘pm.img,先将软盘挂载在虚拟机上然后把pmtest1.com:

       sudo mkdir mnt/floppy/
       sudo mount -o loop pm.img /mnt/floppy/
       sudo cp pmtest1.com /mnt/floppy/
       sudo umount /mnt/floppy/
      
    5. 运行Bochs,一开始A:的时候format,格式完之后执行

       b:\pmtest1.com
      

    实验结果如同上面,一个红色的P出现,证明成功在FreeDos中运行了我们的程序。

    随书源码下载:ORANGES_一个操作系统的实现_光盘源代码

    参考资料:https://www.cnblogs.com/KoalaDream/p/5045875.html

    相关文章

      网友评论

          本文标题:学习笔记 |《ORANGE’S:一个操作系统的实现》| (一)

          本文链接:https://www.haomeiwen.com/subject/dtkkhftx.html