Skip to content

Spider-Detective/orangeOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

orangeOS

Git repo on learning to make a toy OS.

Install Bochs on Ubuntu:

Without debugger:

sudo apt-get install vgabios bochs bochs-x bximage	

With debugger:

  1. Download Bochs from http://bochs.sourceforge.net/
  2. In terminal, run below:
tar -vxzf bochs-2.6.9.tar.gz	
cd bochs-2.6.9	
./configure --enable-debugger --enable-disasm	
make	
sudo make install	

Create floppy image in Bochs:

  • In terminal, run: bximage.
  • Follow the instruction and select the option fd, then select a name for the floppy

Run toy OS in each ch*/ folder

For ch1/

  • To compile: nasm boot.asm -o boot.bin
  • Create floppy image a.img by bximage
  • To write into floppy dd if=boot.bin of=a.img bs=512 count=1 conv=notrunc
  • To run in Bochs with debugger: bochs. Then type enter, type c

For ch3/ and ch4/, FreeDos is used as the boot image

  • Create floppy image pm.img by bximage
  • To compile and write into floppy: make all (make clean also available)
  • To start the FreeDos image: bochs.
  • To start the OS image:
    • in Bochs terminal, clean up floppy b by format B: (for the first time only)
    • type B:\[image_name].com

For ch5/ to ch8/, boot.bin is ready

  • Create floppy image a.img by bximage
  • To compile and write into floppy, please review the Makefile, or simply: make image
  • To run in Bochs with debugger: bochs. Then type enter, type c

For ch9/ and on, booting is the same as ch5/ to ch8/

  1. Additionally, create a hard disk image 80m.img by bximage: Type: hd, Kind: flat, Size: 80, Name: 80m.img
  2. And add these 2 lines in .bochsrc file:
ata0: enabled=1, ioaddr1=0x1f0, ioaddr2=0x3f0, irq=14	
ata0-master: type=disk, path="80m.img", mode=flat	
  1. To partition the HD:
  1. On Mac's virtual machine, use fn + control + (F1 or F2 or F3) to shift among different consoles.