User Tools

Site Tools


releases:3.2.0:usersguide:runningonbochs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

releases:3.2.0:usersguide:runningonbochs [2014/11/11 14:52] (current)
Line 1: Line 1:
 +====== Running MINIX 3 on Bochs ======
 +This page describes the process of installing MINIX 3 on Bochs.
 +
 +===== Preliminaries =====
 +Please install [[http://​bochs.sourceforge.net/​|bochs]]. Bochs binaries can be downloaded from their webpage. If you're running a Linux distribution,​ you can install Bochs via the package manager.
 +
 +===== Virtual Machine Setup =====
 +Before you install Minix 3, you will need to create a new virtual machine configuration. The VM configuration specifies the parameters of your Virtual machine, e.g., how much memory you want the VM to use, how big you want the virtual hard disk to be, etc.
 +
 +Write
 +
 +<​code>​
 +# bximage
 +</​code>​
 +  - Type //hd//.
 +  - Type //flat//.
 +  - Type //2048//, which equals to 2GB of disk space.
 +  - Type minix.img
 +
 +Now, we will get a notification that looks something like:
 +
 +<​code>​
 +The following line should appear in your bochsrc:
 +  ata0-master:​ type=disk, path="​minix.img",​ mode=flat, cylinders=4063,​ heads=16, spt=63
 +</​code>​
 +Make sure you write down all these values, because we will need them later.
 +
 +Now, copy the VGA and BIOS rom images that were included in the Bochs installation,​ to the current directory. Depending on the Linux Distribution you use, the image are either under ///​usr/​share/​bochs//​ or ///​usr/​local/​share/​bochs//​
 +
 +<​code>​
 +cp /​usr/​share/​bochs/​BIOS-bochs-latest BIOS-bochs-latest
 +cp /​usr/​share/​bochs/​VGABIOS-elpin-2.40 VGABIOS-elpin-2.40
 +</​code>​
 +Next, we have to create a file called //​bochsrc.txt//​. You can use any editor you like for doing this.
 +
 +<​code>​
 +vim bochsrc.txt
 +</​code>​
 +Copy in the file the following
 +
 +<​code>​
 +romimage: file=BIOS-bochs-latest
 +megs: 64
 +vgaromimage:​ file=VGABIOS-elpin-2.40
 +floppya: 1_44=floppy.img,​ status=inserted
 +ata0-master:​ type=cdrom, path=minix3_1_3a_ide_r2964.iso,​ status=inserted
 +ata1-master:​ type=disk, path=minix.img,​ cylinders=4063,​ heads=16, spt=63
 +log: out.bochs
 +mouse: enabled=0
 +ips: 15000000
 +boot: cdrom
 +</​code>​
 +Make sure that line 6 is exactly the same as the notification you got earlier after creating the disk image, and that the path in line 5 exactly matches the filename of the minix image you downloaded or will download.
 +
 +If you get an error about ips in the bochsrc.txt,​ the line regarding ips needs to be changed to
 +<​code>​
 +cpu: ips=15000000
 +</​code>​
 +
 +The last line
 +
 +<​code>​
 +boot: cdrom
 +</​code>​
 +indicates that the virtual machine will boot from the cdrom.
 +
 +You can also check the dlxlinux example for reference.
 +
 +===== Installation =====
 +Assuming you have downloaded and decompressed a MINIX 3 ISO image from the [[http://​www.minix3.org/​download|download page]], you can now run bochs and install MINIX.
 +
 +In order to do that, write
 +
 +<​code>​
 +# bochs
 +</​code>​
 +In the menu, press number //6//. Minix 3 will now boot.
 +
 +Then you can follow the [[.:​doinginstallation#​runningsetup|normal installation instructions]].
 +
 +When the installation is over, type
 +
 +<​code>​
 +shutdown
 +</​code>​
 +to exit Minix. When you get the **fd0>** type **off** in order to shutdown the Virtual Machine.
 +
 +===== Booting MINIX 3 =====
 +Now you have installed MINIX 3 on the virtual machine. First thing that needs to be sorted, is that next time you boot, you want to boot from the operating system, and not from the CD image. Edit the bochsrc.txt file,
 +
 +<​code>​
 +# vim bochsrc.txt
 +</​code>​
 +and change the last line to
 +
 +<​code>​
 +boot: disk
 +</​code>​
 +Save the file, and in the command line, write
 +
 +<​code>​
 +# bochs
 +</​code>​
 +to boot MINIX 3.
 +
 +===== Post-install Configuration =====
 +You should read [[.:​postinstallation|Post Installation]] for some configuration tips.
  
releases/3.2.0/usersguide/runningonbochs.txt · Last modified: 2014/11/11 14:52 (external edit)