马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
哪位玩过bochs,我用的是ubuntu 11.10版本的。
首先要做的是安装开发环境。 下载VMware,Ubuntu并安装。 然后下载bochs的源代码,编译安装,编译bochs需要安装几个依赖包。 依赖包包括:build-essential,xorg-dev,pkg-config,gtk2.0 编译JOS。 编译完之后,修改bochs的配置文件(具体两处),使JOS在bochs中启动。 具体步骤如下: Firstwe need to install the development environment. 1.installvmware 7.1 in windows then create the virtual machine forlinux(ubuntu)
2.installubuntu 10.4 in the virtual machine
3.setthe chinese education network update source in ubuntu 10.4 (设置教育网的linux更新源,不然以现在的网速更新实在令人受不了) Howto set it? google!
4.installbuild-essential: usingthe ubuntu software center to install the "build-essential".You can type build-essential in the software center search bar,theninstall the build-essential. Because of my computer is so slowly toopen the software center,so i use apt-get to install it. thecommand is : sudo apt-get install build-essential
5.installxorg-dev thecommand is :sudo apt-get install xorg-dev
6.installpkg-config thecommand is :sudo apt-get install pkg-config
7.installgtk 2.0 thecommand is :sudo apt-get install libgtk2.0-dev
8. Downloadthe bochs from our teacher's website.Then extract it to yourfavourite folder.
9. Compilethe bochs Goto the folder that you place the bochs then Typecommand: ./configure --prefix=/usr --enable-disasm --enable-debugger Iwill install bochs in usr.if install in other folder,you may have toset the enviromnent. Typecommand: make wait....... Typecommand: sudo make install
10. Compilethe JOS Downloadthe lab1.tar.gz from our teacher's website Extractthem. Ifyou want to use gmake type command:ln -s /usr/bin/make /usr/bin/gmake Ifyou use make then you have no need to do the step above Goto the folder lab1 typecommand: make ortype : gmake 就是第10步出现问题: yangzijian@ubuntu:~/Workspace1/lab1.1$ gmake
+ as kern/entry.S
+ cc kern/init.c
+ cc kern/console.c
+ cc kern/monitor.c
+ cc kern/printf.c
+ cc lib/printfmt.c
+ cc lib/readline.c
+ cc lib/string.c
+ ld obj/kern/kernel
+ as boot/boot.S
+ cc -Os boot/main.c
+ ld boot/boot
boot block too large: 600 bytes (max 510)//启动块超过510byte了 哪位遇到过这样的情况啊。如何解决!!!
|