Project idea wanted for undergraduate comp engg students

This forums is for OS project announcements including project openings, new releases, update notices, test requests, and job openings (both paying and volunteer).
Post Reply
shweta
Posts: 2
Joined: Wed Jun 24, 2009 3:18 am

Project idea wanted for undergraduate comp engg students

Post by shweta »

Hi.
Four undergraduate computer engineering students are looking for project ideas in OS development. Something new, experimental and easily implementable in Linux programming environment. If you have even topics which we can research on we would be most grateful.
Thanks
earlz
Member
Member
Posts: 1546
Joined: Thu Jul 07, 2005 11:00 pm
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by earlz »

There are a ton of topics out there.

Let's see.. a quick list from the top of my head(note, some of these have been implemented, or at least attempted)

Everything is metadata in an OS.
Using self-writing code for just about everything(AKA Synthesis kernel)
Treating the filesystem as a database
Using any other language but C, ASM, or C++ for a kernel is relatively new and experimental(not exactly recommending it though)
A Virtual machine monitor(this has been done a few times though)
Executing SMM code in your OS
Memory mapping to the extreme(probably 64 bit only)
Everything is in the filesystem(AKA Plan 9)

the possibilities are endless. It just depends how much work you want to put out..
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by JamesM »

Hi,

As an CS/SwEng undergraduate studying OS development in my spare time, I feel I'm qualified to give you a few pointers.

There appears to be conflicting aims in your question:
...looking for project ideas in OS development
and easily implementable
Nothing in this field is easy, least of all "new, experimental" things. The field of OS development is probably one of the hardest you will ever come across.

There are some things that match your "new, experimental" requirement - managed operating systems like Singularity and Cosmos seem to have a lot of good, new ideas behind them. If you have a mathematical background, you could look into real-time operating systems - there are algorithms for schedulability, complexity and meeting deadlines that are being actively developed; again though you could probably not find a more difficult sector.

Remember though, if you're only doing a Bachelor's degree, you don't need anything that's new. You don't need to push the boundaries of global knowledge, like you do with a Masters or PhD. All you have to do is show competence in project planning, management and evaluation.

If you're doing a Masters, well, I would still advise you to stay away. There's not much you can do in a one year course unless you already know a hell of a lot about the area, and by the mere fact that you're asking this question I can infer that you don't.

There aren't many research topics in general purpose OSes at the moment, which is why my Masters is actually going to be on compilers and parallelism. Loads of new ideas there, perhaps you could check that out instead?

Failing that, if you could get back to us with some thoughts about your prior experience that would help. Quite honestly, most undergrads would not be up to research in this sector.

Cheers,

James
User avatar
piranha
Member
Member
Posts: 1391
Joined: Thu Dec 21, 2006 7:42 pm
Location: Unknown. Momentum is pretty certain, however.
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by piranha »

What about AI in the kernel? What I like most would be a scheduler that adjusts itself to suit the needs of the system that it is running on. It has say (arbitrary number) 10 values that make it run differently, and each time the computer runs, it perfects itself for speed.

What I would like to see is a kernel (micro or mono) that takes full advantage of all CPU stuff (sysenter, APIC, SMP). And everything is build from the ground up. This is not going to be easy, as there are many specs to read for this.

-JL
SeaOS: Adding VT-x, networking, and ARM support
dbittman on IRC, @danielbittman on twitter
https://dbittman.github.io
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Project idea wanted for undergraduate comp engg students

Post by Love4Boobies »

piranha wrote:What about AI in the kernel? What I like most would be a scheduler that adjusts itself to suit the needs of the system that it is running on. It has say (arbitrary number) 10 values that make it run differently, and each time the computer runs, it perfects itself for speed.
Basically this is what schedulers try to do anyway so if a good algorithm is found, your dynamically choosing policy method fails. On the other hand, there might not be a perfect algorithm and changing the policy for a certain workload might also be a solution. But there are many types of workloads and many policies to be implemented so it can be tedious, error prone and of course, incomplete. A genetic algorithm for a scheduler might be nice and closer to the solution, though.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
User avatar
salil_bhagurkar
Member
Member
Posts: 261
Joined: Mon Feb 19, 2007 10:40 am
Location: India

Re: Project idea wanted for undergraduate comp engg students

Post by salil_bhagurkar »

I think something that can be simpler at its earlier stages, but can be expanded as much as you want, is a file system. You could design a file system for storage devices that attempts to solve the problems that file systems face. These could include fragmentations, data transfer bottlenecks, reliability etc.

You could start off with a simple implementation that has no fragmentation support, and then go on adding features depending on how much time you get. Features could extend to fragmentation, hard links, permissions, and even journalling.
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by JamesM »

salil_bhagurkar wrote:I think something that can be simpler at its earlier stages, but can be expanded as much as you want, is a file system. You could design a file system for storage devices that attempts to solve the problems that file systems face. These could include fragmentations, data transfer bottlenecks, reliability etc.

You could start off with a simple implementation that has no fragmentation support, and then go on adding features depending on how much time you get. Features could extend to fragmentation, hard links, permissions, and even journalling.
While that is a good idea for a project, it really is a fruitless exercise - Creating a good filesystem is an extremely difficult task; creating a better filesystem is really not likely unless you totally know your stuff beforehand.
User avatar
salil_bhagurkar
Member
Member
Posts: 261
Joined: Mon Feb 19, 2007 10:40 am
Location: India

Re: Project idea wanted for undergraduate comp engg students

Post by salil_bhagurkar »

JamesM wrote: Remember though, if you're only doing a Bachelor's degree, you don't need anything that's new. You don't need to push the boundaries of global knowledge, like you do with a Masters or PhD. All you have to do is show competence in project planning, management and evaluation.
Considering that, IMHO, you could also think of making an implementation of an existing file system. Few of my friends for example, added minimal ext4 read support to the new GRUB (bootloader).
shweta
Posts: 2
Joined: Wed Jun 24, 2009 3:18 am

Re: Project idea wanted for undergraduate comp engg students

Post by shweta »

Thank-you everybody.
As for my background-yes this is an undergraduate project and not a masters project. It is a final year project for a 4-year bachelor in computer engineering degree course. We are 4 people who will be working on the project for approximately 6 months. We have studied OS basics thereotically and have basic working knowledge of UNIX.
Yes we would be happy to implement something that already exists. By easily implementable i meant at the undergraduate level. I dont think we have either the knowledge or the time to do anything path breaking :)
The focus is more on learning during the entire project implementation process.
earlz
Member
Member
Posts: 1546
Joined: Thu Jul 07, 2005 11:00 pm
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by earlz »

I would go for a UNIX clone then.. there is a defined interface, so you won't really make any breaking news there, but there is plenty of different ways to implement a unix clone..
User avatar
imate900
Member
Member
Posts: 80
Joined: Sat Feb 28, 2009 11:43 am

Re: Project idea wanted for undergraduate comp engg students

Post by imate900 »

shweta wrote:Hi.
Four undergraduate computer engineering students are looking for project ideas in OS development. Something new, experimental and easily implementable in Linux programming environment. If you have even topics which we can research on we would be most grateful.
Thanks
---REMOVED---
Last edited by imate900 on Sun Jun 28, 2009 5:02 pm, edited 1 time in total.
Current work on a OS: SauOS (project homepage: http://code.google.com/p/sauos/)
Image
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by Combuster »

That's both not an answer, and factually wrong. A linux environment does not imply the presence of any compilers.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
xyjamepa
Member
Member
Posts: 397
Joined: Fri Sep 29, 2006 8:59 am

Re: Project idea wanted for undergraduate comp engg students

Post by xyjamepa »

Hi,

I'm making a real mode os fully with asm
as a fourth year project for my five years informatic engineering
it's fun and I learnt alot.

Good luck
The man who follows the crowd will usually get no further than the crowd.
The man who walks alone is likely to find himself in places
no one has ever been before.
User avatar
devel
Member
Member
Posts: 62
Joined: Wed Nov 28, 2007 4:15 am
Contact:

Re: Project idea wanted for undergraduate comp engg students

Post by devel »

Hi,
take a look at my project nucleos. The goal of this project to create GNU compliant micro-kernel called nucleos. The
base of code was adopted from recent minix3 however it focuses only to kernel-server-driver stuff. At present I am
working on ELF support and then planning to port glibc.
Regards,
devel
Post Reply