Tagged Questions
osdev is a tag for operating system development, which means the kernel and supporting operating system utilities (e.g. the shell, networking, etc.).
173
votes
20answers
39k views
What are some resources for getting started in operating system development?
One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).
I'm having a ...
43
votes
20answers
4k views
How can I build a small operating system on an old desktop computer?
This might be in vain, as I know writing an operating system is unbearably complicated (especially by oneself).
I don't expect to build the next linux, or windows.
I know it will be horrible, and ...
32
votes
22answers
5k views
How are Operating Systems “Made”?
Creating an OS seems like a massive project. How would anyone even get started?
For example, when I pop Ubuntu into my drive, how can my computer just run it?
(This, I guess, is what I'd really ...
26
votes
15answers
6k views
How do you write a basic operating system?
Let me know how I can create a basic operating system.
What books do you recommend?
23
votes
14answers
3k views
How should I go about doing operating system development for the X86 architecture?
I want to make my own operating system for the X86 architecture.
What would be the best language to use? (Along with assem of course)
What would the best compiler for the language be on a windows ...
15
votes
14answers
2k views
For kernel/OS is C still it?
I like operating systems and would eventually like to become a OS developer mostly working on kernels. In the future will C still be the language of choice and what else should I be trying to learn?
14
votes
11answers
1k views
What's the best way to get to know linux or BSD kernel internals?
I'd like to gain better knowledge of operating system internals. Process management, memory management, and stuff like that.
I was thinking of learning by getting to know either linux or BSD kernel.
...
9
votes
9answers
1k views
Best Educational Operating System For Study? [closed]
What's the best operating system to study in order to write your own x86 operating system from scratch?
9
votes
2answers
1k views
How do I make GRUB automatically boot the kernel?
I am currently writing a kernel, and in an attempt to actually run it, I've decided to use GRUB. Currently, we have a script to attach GRUB's stage1, stage2, a pad file, and the actual kernel itself ...
9
votes
7answers
4k views
Other than malloc/free does a program need the OS to provide anything else?
I'm working on designing the kernel (which I'm going to actually call the "core" just to be different, but its basically the same) for an OS I'm working on. The specifics of the OS itself are ...
8
votes
11answers
903 views
Building an Operating System [closed]
I would like to build an operating system, it's one of my dreams. Before that I like to recreate ubuntu or debian or something else. but before that I need some advice and help from all my friends. I ...
8
votes
6answers
2k views
How To Create Your Own x86 Operating System for Modern PC Computers
I'd like to create a new operating system for x86 PC computers. I'd like it to be 64-bit but possibly run as 32-bit as well.
I have these kinds of questions:
What kinds of things do you start ...
8
votes
10answers
4k views
What is a good barebones linux distro for beginner kernel development?
In my Operating Systems class we are looking to modify a Linux kernel with some simple system calls of our own in C.
What would be a good distro suited for this purpose? We don't need any frills, no ...
6
votes
3answers
1k views
Multithreading and Interrupts
I'm doing some work on the input buffers for my kernel, and I had some questions. On Dual Core machines, I know that more than one "process" can be running simultaneously. What I don't know is how the ...
6
votes
10answers
2k views
Roadblocks in creating a custom operating system
It seems to me that the most common overly ambitious project that programmers (esp. Comp. Sci. grads) try to tackle is building your own operating system. (Trying to create your own programming ...
5
votes
3answers
127 views
Changing bios code/flashing the bios
I've spent a lot of time developing an operating system and working on my low level boot loader. But now I want to take some time off my operating system while not leaving the low-level environment ...
5
votes
5answers
2k views
Loading kernel from assembly (NASM)
I've been stuck with this for weeks now and have no idea where I'm going wrong because NASM hasn't given me any errors. The code is pretty self explanatory because of the comments.
this is the code ...
5
votes
1answer
1k views
How do I build a kernel image using Visual Studio?
I'd like to build an embedded kernel for an x86 machine using Visual C++. I have some C and assembly code files to compile and I'd like to link them all together in a way that is compatible with a ...
5
votes
3answers
940 views
How do I programmatically create a bootable CD?
I'm using a barebones tutorial as the basis for an OS I'm working on, and it seems to be an older tutorial: it has be compiling the kernel down to a floppy image, and then loading it with GRUB.
...
5
votes
6answers
758 views
I'm interested in creating an OS. Where should I start?
I'm a handheld programmer (pocket pc mostly)
I've been coding in C++ for 10 years.
I'd like to build a PPC OS for the OLPC's XO, and I would like know where to get started.
Does anyone have a good ...
5
votes
2answers
2k views
x86 assembly Protected mode Keyboard Access
So I'm working on keyboard input for a very bare bones kernel that I'm throwing together, and I'm completely stuck. I can't seem to find any information online that can tell me the information I need ...
4
votes
1answer
91 views
Using LLDT and configuring the GDT for it
I'm working on a small OS that will use a separate Local Descriptor Table for each process. I understand that I will need to use the lldt instruction to load a LDT segment from my GDT. I already ...
4
votes
6answers
189 views
C without stdio, what is possible?
I've been interested in programming an operating system for some time. Delving through a few different sites, I've come across an interesting concept (to paraphrase): if you start writing your ...
4
votes
3answers
985 views
Setting up IRQ mapping
I'm following several tutorials and references trying to get my kernel set up, and I've come across voodoo code in a tutorial that isn't explained at all. Its code that I'm told maps the 16 IRQs ...
4
votes
5answers
2k views
What stack size should I use for threads in kernel development?
So I'm working on designing an OS, and I'm working on designing (not coding yet) the kernel. This is going to be for an x86 operating system, and my target is for more modern computers, so RAM can be ...
3
votes
1answer
72 views
CPUID on multiple cores/NUMA
I am working on CPU detection and general environment detection code for my hobby OS. Is there ever a case where CPUID needs to be called multiple times? That is if the system has multiple cores, does ...
3
votes
1answer
65 views
Developing for the Android OS [closed]
I'm interested in learning how to develop for the Android OS so that I can begin contributing bug fixes and patches. I'm not interested in developing apps for Android. I've been a software developer ...
3
votes
4answers
124 views
Using ngen.exe to compile a kernel
I understand that the Cosmos and SharpOS have made their own compilers to build binary code from C#, but could you use Microsoft's .NET AOT to do the same thing? Compiling C# to x86, that is. I assume ...
3
votes
2answers
89 views
Custom Interrupt Descriptor Table Confusion
I'm writing a small OS that runs under protected mode. I am coming to a point where I want to load a custom interrupt descriptor table, and I don't know where to start. I have read some stuff on the ...
3
votes
1answer
173 views
Higher half kernel initialization
When initializing my kernel, I have a few things that need to happen: 1) paging needs to be enabled, 2) the physical memory manager needs to parse the memory map from grub, and 3) assorted startup ...
3
votes
1answer
245 views
OS(Operating System) Programming in C# [closed]
I know this project.The question is that "Can we create a real OS with Managed Code or the os that will create with this project is a hello world os?"
Operating Systems need to have full control on ...
3
votes
1answer
500 views
memory mapped i/o operation (in intel processor) using in/out instruction…still be cached?
Will a memory mapped i/o operation (in intel processor) still be cached if the address range of the mapped i/o is being typed as write back (WB) even if I use the in/out instruction?
EDIT:
This ...
3
votes
2answers
1k views
Return from interrupts in x86
I have loaded an idt table with 256 entries, all pointing to similar handlers:
for exceptions 8 and 10-14, push the exception number (these exceptions push an error code automatically)
for the ...
3
votes
2answers
2k views
How does an OS generally go about managing kernel memory and page handling?
I'm working on kernel design, and I've got some questions concerning paging.
The basic idea that I have so far is this: Each program gets its own (or so it thinks) 4G of memory, minus a section ...
3
votes
5answers
1k views
Mixing 32 bit and 16 bit code with nasm
This is a low-level systems question.
I need to mix 32 bit and 16 bit code because I'm trying to return to real-mode from protected mode. As a bit of background information, my code is doing this ...
2
votes
1answer
65 views
Porting kernel project from DJGPP to MinGW
Trying to compile a C++ kernel project with MinGW & NASM (formerly DJGPP & NASM). Have actually tried Cygwin too, with the exact same results below:
First, just swapped out \DJGPP\bin for ...
2
votes
1answer
112 views
Loading 2nd stage of bootloader and starting it
Recently I'm trying to get a hang on how bootloaders work.
I'm writing my loader in nasm assembler and test it with bochs and a floppy image.
The compiled binaries for stage 1 and 2 get joined via ...
2
votes
1answer
65 views
What is the proper way to acknowledge an ATA/IDE interrupt?
I am currently working on a hobby OS, specifically the ATA driver. I am having some issues with PIO data-in commands with interrupts. I am trying to execute the READ MULTIPLE command to read multiple ...
2
votes
1answer
200 views
Switching to User-mode using iret
I am writing a small OS that will execute some code in user mode (privilege level 3). From that user level code, I want to call an interrupt back to the OS that prints a message. Right now I don't ...
2
votes
4answers
239 views
Simple in memory file system
Can anybody point me to a simple (can't stress this enough) implementation of an in memory file system? If I can create a file and do a simple cat file.txt it's more than enough.
I would like to use ...
2
votes
1answer
184 views
What is the best book about osdev?
What is the best book about operating systems development and programming? What books can be more helpful for those looking to program operating systems?
2
votes
2answers
366 views
OS's Boot-loader doesn't work
I am making a custom Operating System. I have two nasm files:
boot.asm:
[BITS 16] ;tell the assembler that its a 16 bit code
[ORG 0x7C00] ;Origin, tell the assembler that where the code will
...
2
votes
7answers
274 views
books that guide you to knowing the underlying system better
I'm an undergraduate on CS for one year,have learned some programming languages, C, python, etc. I know a bit of TCP/IP protocol stack, and have been using linux for half a year.
What disappoints me ...
1
vote
2answers
69 views
Developping a GUI environment in home-made OS
I have made a desktop os with a kernel in c that prints "hello world". I am trying to make a GUI (custom window manager, buttons) for my os in c but I am having trouble. I looked at one tutorial:
...
1
vote
1answer
67 views
getting memory allocated at boot time
I need some memory allocated during boot time. and I need its physical address, not the virtual one. Also, I don't want it from DMA region, that's not my purpose.
I tried alloc_bootmem(), ...
1
vote
2answers
105 views
Do I neet GDT to build an IDT?
I am working on Atom-32bit board (AT&T assembly), there is no software on this board yet.
Do I need to build GDT to build/use an IDT ?
The idea is just to use an ISR with APIC timer.
/*Change ...
1
vote
2answers
162 views
How to use STLPort in my kernel?
I am developing a kernel in C++. But I do not want to write a stdlib; for that purpose I have downloaded STLport http://www.stlport.org/, but I don't know how to install and use it.
I am using Linux ...
1
vote
0answers
47 views
Can Intel processors delay TLB invalidations?
This in reference to InteI's Software Developer’s Manual (Order Number: 325384-039US May 2011), the section 4.10.4.4 "Delayed Invalidation" describes a potential delay in invalidation of TLB entries ...
1
vote
2answers
220 views
How to find motherboard info using CPUID?
I am trying to develop a C function for getting some motherboard info (name, id, etc.) but I can't find where these info are stored. I had a look at CPUID but I could't find anything related to the ...
1
vote
1answer
95 views
Prototype Kernel and modules
Recently I've picked up one of my old projects and restarted it, pretty much from scratch.
I've been sick for awhile, so I've had time to crack down hard and implement tons of functionality. However ...