最近开始看于渊的《自己动手写操作系统》这本书,刚开始看就发现做系统的引导盘竟然是软盘!心里那个汗啊!
现在都是U盘了,谁还用软盘。于是考虑用U盘。
于是开始以下步骤:
1、既然书上说给先要把软盘做引导盘,那我就类似地把U盘做成引导盘。在网上找了半天,发现USboot,于是就用它给自己的U盘做了一个引导盘。
2、把编译后的boot.bin文件用绝对扇区工具写入U盘就万事大吉了。同样,在网上找到了winhex(还有ultraiSO,这个没有什么用),可是这个关键的一步,自己不知道怎样用winhex将bin文件写入U盘。那可着急啊。。。
弄了两个小时,还是没有成功。于是想,能否就用虚拟软盘?
好,就开始重新找思路。
最后终于找到和我一样困境的人,他的解决方法就是采用虚拟软盘,将bin文件写入镜像文件.img中,然后最为启动文件挂载到虚拟软盘中,就实现了自己的名义上的第一个操作系统----Hello, OS world!
具体方法是:
1、用作者提供的floppy writer将bin文件写入作者提供的TINIX.IMG文件中
2、在vmware(也可以用virtual pc)中创建新虚拟机,注意操作系统和版本都选other。
3、vmware编辑虚拟机设置,具体如图所示:
注意软盘的设置:
如果你有两个虚拟系统的话,虚拟光驱的设置也要改一下
最后启动自己的系统即可。
下面是两个同类文章的连接,本人也做了参考。
http://blog.csdn.net/charcy/article/details/6230032
http://herogun.blog.51cto.com/21804/957968
在虚拟机VirtualBox 中如何把IMG文件转换成它的虚拟磁盘文件VDI
原文如下:
To convert an .img file to .vdi in Linux, so that you can directly use it in VirtualBox, open a terminal and paste this:
VBoxManage convertdd file.img file.vdi
For instance, to convert the recently mentioned ChromeOS Cherry from .img to .vdi:
VBoxManage convertdd ChromeOS-Cherry.img ChromeOS-Cherry.vdi
To do this is Windows (I haven't tested it but it should work), open cmd.exe (Start > Run, enter: cmd.exe), navigate to "C:\Program Files\innotek VirtualBox" (using the "cd" command), then run this (after placing the .img file inside the "C:\Program Files\innotek VirtualBox" folder):
VBoxManage.exe convertdd file.img file.vdi
Please let us know if you have tried this in Windows and rather or not it worked.
To use it in VirtualBox, create a new Virtual Machine, select "Use existing hard disk" and browse for the recetly converted .vdi file:
You may also want to check out how to create a shortcut to launch Virtual Machines without opening the VirtualBox GUI (for both Windows and Linux)
翻译如下:
转换在Linux VDI的img文件,这样您就可以直接使用在VirtualBox中,打开一个终端,并贴上此:
VBoxManage convertdd file.img file.vdi
例如,从图到VDI。 樱桃最近提到的ChromeOS的转换:
VBoxManage convertdd ChromeOS-Cherry.img ChromeOS-Cherry.vdi
要做到这一点是Windows(我没有测试,但它应该工作),打开CMD.EXE(开始>运行,输入:CMD.EXE),浏览到“C:\程序文件\伊诺特VirtualBox的”(使用“ cd“命令),然后运行后,把里面的img文件的”C:\ Program Files文件\伊诺特VirtualBox的“文件夹:
VBoxManage.exe convertdd file.img file.vdi
请让我们知道,如果你已经尝试在Windows,而不是或不工作。
在VirtualBox中使用它,创建一个新的虚拟机,选择“使用现有的硬盘”,并浏览recetly转换VDI文件。