Posts

Showing posts from April, 2007
Installing Bochs/Unix_v6 on your 32-bit Linux machine Start of with downloading the latest bochs source from this site . I have downloaded this snapshot. Extract to a folder tar -zxvf bochs-20070421.tar.gz Change to the bochs extracted folder cd bochs-20070421 Configure the bochs to be built in Debug mode ./configure --enable-debugger --enable-disasm Check that debugger flags are enabled config.h #define BX_DEBUGGER 1 #define BX_DISASM 1 Compile the bochs in debugger mode gmake Install the bochs in debugger mode make install Bochs is all set to run in the DEBUG Mode :) What next, I need OS for Boch machine, I have tried Linux, Windows, Mac OS all these are stupid they dint work on my Bochs machine, so I took the simple and the best OS Unix v6 from one of the google code. Building the Unix v6 OS for Bochs machine Get the Unix v6 source from this googlecode project svn checkout http://iitcs450.googlecode.com/svn/lab1/trunk/ lab1 change to the source directory cd lab1 Build the kernel and...