The old Linux kernel source version 0.11 and the integrated experiment environment.
Basic information
Features
The Linux distributions: debian and ubuntu are recommended
Some tools: gcc gdb qemu cscope ctags cflow graphviz
$ apt-get install vim cscope exuberant-ctags build-essential qemu
Use with docker (everything is installed by default for you)
Install docker
$ sudo apt-get install software-properties-common
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:dotcloud/lxc-docker
$ sudo apt-get -y update
$ sudo apt-get install lxc-docker
Build and Start the service
$ docker build -t tinylab/linux-0.11-lab ./
$ CONTAINER_ID=$(docker run -d -p 6080:6080 dorowu/ubuntu-desktop-lxde-vnc)
$ docker logs $CONTAINER_ID | sed -n 1p
User: ubuntu Pass: ubuntu
Access it via http://localhost:6080/vnc.html
Or http://172.17.0.1:6080/vnc.html
$ docker exec 8222763de ifconfig eth0 | grep "inet addr:"
inet addr:172.17.0.1 Bcast:0.0.0.0 Mask:255.255.0.0
Optional (bochs emulator instead of qemu)
$ sudo apt-get install bochs vgabios bochsbios bochs-doc bochs-x libltdl7 bochs-sdl bochs-term
$ sudo apt-get install graphviz cflow
$ make switch // switch to another emulator, between qemu and bochs
Switch to use emulator: bochs
$ make help // get help
$ make // compile
$ make start-hd // boot it on qemu with hard disk image
$ make debug-hd // debug it via qemu & gdb, you'd start gdb to connect it.
$ gdb images/kernel.sym
(gdb) target remote :1234
(gdb) b main
(gdb) c
// to debug the bootsect or setup part, please load the symbol files
$ gdb boot/bootsect.sym
$ gdb boot/setup.sym
Optional
$ echo "add-auto-load-safe-path $PWD/.gdbinit" > ~/.gdbinit // let gdb auto load the commands in .gdbinit
Note: A simpler method is use Boot2Docker with our Dockerfile, see Build on the other systems
Install xcode from "App Store"
Install Mac package manage tool: MacPorts from http://www.macports.org/install.php
Check your OS X version from "About This Mac", for example, Lion
Go to the "Mac OS X Package (.pkg) Installer" part and download the corresponding version
Self update MacPorts
$ xcode-select -switch /Applications/Xcode.app/Contents/Developer
$ sudo port -v selfupdate
Install cross compiler gcc and binutils
$ sudo port install qemu
Install qemu
$ sudo port install i386-elf-binutils i386-elf-gcc
Install graphviz and cflow
$ sudo port install GraphViz
$ sudo port install cflow
Install gdb. 'Cause port doesn't provide i386-elf-gdb, use the pre-compiled tools/mac/gdb.xz or download its source and compile it.
$ cd tools/mac/ ; tar Jxf gdb.xz
Optional
$ sudo port install cscope
$ sudo port install ctags
$ wget ftp://ftp.gnu.org/gnu/gdb/gdb-7.4.tar.bz2
$ tar -xzvf gdb-7.4.tar.bz2
$ cd gdb-7.4
$ ./configure --target=i386-elf
$ make
Same as Hack Linux-0.11 on Linux
If want to use this Lab on the other systems, such as Windows (and even Mac OS X), with the Dockerfile support, everything is simplified.
Only need to install the boot2docker tool, which is a lightweight Linux distribution made specifially to run Docker containers, with this tool and our Dockerfile, we can simply build a Linux 0.11 Lab on every system.
Install Boot2Docker and boot into it
please follow Boot2Docker Installation.
Build and Start the service
$ docker build -t tinylab/linux-0.11-lab ./
$ CONTAINER_ID=$(docker run -d -p 6080:6080 dorowu/ubuntu-desktop-lxde-vnc)
$ docker logs $CONTAINER_ID | sed -n 1p
User: ubuntu Pass: ubuntu
Access it via http://localhost:6080/vnc.html
Or http://172.17.0.1:6080/vnc.html
$ docker exec 8222763de ifconfig eth0 | grep "inet addr:"
inet addr:172.17.0.1 Bcast:0.0.0.0 Mask:255.255.0.0
Same as Hack Linux-0.11 on Linux
2015-03-15, falcon wuzhangjin@gmail.com
2012-04-30, yuanxinyu yuanxinyu.hangzhou@gmail.com
2011-07-31, tigercn moonlight.yang@gmail.com
2008-10-15, falcon wuzhangjin@gmail.com
2005, jiong.zhao gohigh@sh163.net
1991, Linus