Tagged Questions
2
votes
1answer
43 views
Why do interrupts need to be disabled before switching to protected mode from real mode?
I saw in many many oses (and some bootloader), they all disable interrupt (cli) before switch to protected mode from real mode. Why we need do that?
1
vote
4answers
194 views
Port GNU C Library to minimal hobby OS
So I have a minimal OS that doesn't do much. There's a bootloader, that loads a basic C kernel in 32-bit protected mode. How do I port in a C library so I can use things like printf? I'm looking to ...
5
votes
2answers
126 views
Self contained C routine to print string
I would like to make a self contained C function that prints a string. This would be part of an operating system, so I can't use stdio.h. How would I make a function that prints the string I pass to ...
1
vote
2answers
185 views
Does booting in EFI mode mean that I shall not have access to BIOS interrupts?
I am attempting to develop a simple OS. I have done some assembly programs before and have had to use INT 10h to display characters to the screen. I understand that UEFI has support for legacy BIOS ...
0
votes
1answer
118 views
own OS - read out cd rom directory content [closed]
I want to programming my own "learning" mini Operating System.
So I switch fro 16 Bit to 32 Bit protected mode after boot, doing GDT stuff, and so on.
Now, I would read out the CD-Rom contents ...
30
votes
5answers
1k views
Does a LibC os exist?
I remember hearing about an embeddable OS that is essentially just libc (maybe it had support for c++). It didn't have a kernel, pipes or any of the other stuff you expect from an os. I tried looking ...
2
votes
2answers
98 views
Does pte modifying go through the same page table as usual memory access do?
I know that usual memory access will go through page tables to do virtual address to physical address translation. But what about pte modifying? Say OS want to modify a process's page table entry, ...
1
vote
1answer
242 views
Qemu hanging in main system call
I was working on the Pintos project . And while I was implementing a priority donation mechanism for the proper priority scheduling , QEMU emulator just hung up (I have attached an image and the dump ...
3
votes
1answer
152 views
Compiling and linking C code without any additional data in output file
I am asking for help by professionals because of lack of my knowledge in using GCC and ld.I'm writing OS for educational purposes, and i have a problem with compiling and linking C code. To be honest, ...
2
votes
3answers
159 views
Location of variables in C
I'm trying to understand how C allocates memory to global variables.
I'm working on a simple Kernel. So far it can't do much more than print to screen and enable interrupts. I'm now working on a ...
1
vote
2answers
359 views
Opening a file in Assembly Language independent of OS
I have been trying to figure out how to open a file from the hard drive in assembly. I want to do this without using DOS interrupts or anything that would require an operating system, because I am ...
1
vote
1answer
116 views
entry() get into the different address from the entry point I set in the Elf
Recently I'm learning about the OS. And I want to write a simple bootloader, which change the real mode to protect mode and then load the simple kernel.
But I can't figure out the entry address ...
2
votes
1answer
547 views
Identifying faulting address on General Protection Fault (x86)
I am trying to write a ISR for the General Protection Fault (GP#13) on x86. I am unable to figure out from the INTEL docs as to how I can find out the faulting address causing the exception. I know ...
0
votes
1answer
145 views
Operating System debugger for Ubuntu 11.10
I've been doing operating system development (not building a Linux kernel), and have gotten to the point where I need a debugger, for my latest OS. I've tried Bochs (under my Win 7 partition), but ...
3
votes
1answer
513 views
kernel mode and memory protection [closed]
in Operating System User mode application's virtual address space is private, one application cannot alter data that belongs to another application. Each application runs in isolation, and if an ...
3
votes
2answers
742 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:
...
2
votes
1answer
131 views
Is an LDT needed?
As part of some OS development for a 32-bit x86 processor, I am considering using an task gate in the interrupt descriptor table for the page fault vector. The aim is to force a task switch so that ...
0
votes
1answer
64 views
Circular References and Low Level Assembly
I've got a file called idt.c, and in this file, I need to call the function idt_load from assembly. Now, this would work just fine, except that I need to access a variable, idtp from the assembly ...
2
votes
1answer
225 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 ...
0
votes
2answers
354 views
Static constructors in C++ on my own OS kernel
I am trying to write a kernel in c++ and I am a beginner in OS development. Now I am implementing cout to display on a monitor, but I am facing some problems. I know the question I am asking is ...
7
votes
3answers
320 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 ...
0
votes
1answer
380 views
Mini OS: Linking the compiled & assembled .o files
I'm trying to set up a working environment for assembling a bootloader and compiling and linking a simple kernel according to this page: enter link description here
So far everything went well, ...
3
votes
3answers
1k 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 ...
1
vote
1answer
501 views
Using grub in floppy image file to start your own kernel inside bochs
Basically I've followed the instructions here http://sig9.com/bochs-grub to create a bare image file which does nothing but lets the BIOS start GRUB.
The problems are:
The kernel I am writing will ...
2
votes
1answer
351 views
What is the best book about osdev? [closed]
What is the best book about operating systems development and programming? What books can be more helpful for those looking to program operating systems?
0
votes
5answers
7k views
What language is used to write operating systems (Windows)? [closed]
What is the language used to write operating systems (Windows) or a boot CD?
11
votes
11answers
5k 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 ...
14
votes
8answers
7k 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 ...
12
votes
9answers
3k 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?
7
votes
5answers
3k 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 ...
1
vote
1answer
102 views
What does it take to write a virtualization host?
I'm not planning on doing this right now, as I don't have the experience in this area to even attempt it at the moment, but I'm curious about something.
If implementing an operating system from ...
1
vote
7answers
321 views
Develop & run an operating system on a laptop computer?
I was thinking about starting to write my own OS, but it seems that most of the time you start by putting the bootloader & OS on a floppy disk. Problem : my laptop has no floppy disk reader. I'm ...
54
votes
20answers
7k 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 ...
2
votes
7answers
391 views
books that guide you to knowing the underlying system better [closed]
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 ...
16
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?
3
votes
2answers
2k 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 ...
36
votes
22answers
9k 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 ...
7
votes
7answers
3k views
Roadblocks in creating a custom operating system [closed]
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
6answers
893 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 ...
4
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 ...
35
votes
16answers
11k 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?
10
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 ...
4
votes
5answers
3k 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 ...
8
votes
7answers
5k 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 ...
27
votes
14answers
5k 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 ...
273
votes
23answers
57k 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 ...
18
votes
12answers
2k 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.
...
3
votes
4answers
2k 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 ...