I will be TA for an operating systems class this upcoming semester. The labs will be deal specifically with the Linux Kernel. What concepts/components of the Linux kernel do you think are the most important to cover in the class? What do you wish was covered in your studies that was left out? Any suggestions regarding the Linux kernel or overall operating systems design would be much appreciated.
|
4
|
|||||
|
|
|
My list:
In the end just get them to go through tanenbaum's modern operating systems and also do case studies on some other kernels like Mach/Hurd's microkernel setup and maybe some distributed and exokernel stuff. Give a broad view past Linux too, I recon For those who are super geeky, the history of operating systems and why they are the way they are. |
||||||||||||
|
|
|
The Virtual File System layer is an absolute must for any Linux Operating System class. I took a similar class in college. The most frustrating but, at the same time, helpful project was writing a small file system for the Linux operating system. Getting this to work takes ~2-3 weeks for a group of 4 people and really teaches you the ins and outs of the Kernel. |
||
|
|
|
Well, I just finished my OS course this semester so I thought I'd chime in. I was kind of upset that we didn't actually play around with the actual OS itself, rather we just did system programming. I'd recommend having the labs be on something that is in the OS itself, which is what it sounds like what you want to do. One lab that I did enjoy and found useful however was writing our own malloc/free routines. It was difficult, but pretty entertaining as well. Maybe also cover loading programs into memory and/or setting up the memory manager (such as paging). |
||
|
|
|
|
For labs, one thing that may be cool is to show them actual code and discuss about it, ask questions about what do they think things are done that way and not another, etc. If I were again in the University I would certainly appreciate more in depth lessons about synchronization primitives, concurrency and so on... those are hard matters that are more difficult to approach without proper guidance. I remember I went to a speech by Paul "Rusty" Russell about spinlocks and other synchronization primitives that was absolutely rad, maybe you could find it in youtube and borrow some ideas. |
|||
|
|
|
Another good topic (or possibly exercise for the students) would be looking at virtualisation. Especially Rusty Russel's "lguest" which is designed as a simple introduction to what is required to virtualise an operating system. The docs are good reading too. |
||
|
|
|
I recently took an operating systems class, and I found the projects to be challenging, but essential in understanding the concepts in class. The projects were also fun, in that they involved us actually working with the Linux source code (version 2.6.12, or thereabouts). Here's a list of some pretty good projects/concepts that I think should be covered in any operating systems class:
|
||
|
|
|
I actually just took a class that perfectly fits your description (OS Design using linux) in the spring. I was actually very frustrated with it because I felt like the teacher focused too narrowly for the projects rather than give a broader understanding. For instance, our last project revolved around futexes. My partner and I barely learned what they were, got it working (kinda) and then turned it in. I came away with no general knowledge of anything really from that project. I wish one of the projects had been to write a simple device driver or something like that. In other words, I think it's good to make sure a good broad overview is presented, with as much detail as you can afford, but ultimately broad. I felt like my teacher nitpicked these tiny areas and made us intensely focus on those, while in the end I did NOT come away with that great of a general understanding of the inner-workings of Linux. Another thing I'd like to note is a lot of why I didn't retain knowledge from the class was lack of organization. Topics came out of nowhere any given week, and there was no roadmap. Give the material a logical flow. Mental organization is the key to retaining the knowledge. |
|||
|
|
|
|
Memory mapped I/O and the 1g/3g vs 2g/2g split between kernel address space and user addressable space in 32bit operating systems. Limitations of 32 bit architecture on hard drive size and what this means for the design of file systems. Actually just all the pros and cons of going to 64 bit, what it means and why as well as the history and why are aren't there yet. |
||
|
|
|
|
The networking sub-system is also quite interesting. You could follow a packet as it goes from the socket system call to the wire and the other way around. Fun assignments could be:
|
|||
|
|
