What does your OS look like? (Screen Shots..)

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
ch1ndra
Posts: 1
Joined: Tue Jun 12, 2018 10:29 pm

Re: What does your OS look like? (Screen Shots..)

Post by ch1ndra »

Bogdan's SolarOS is an epitome of dedication and commitment. I've been trying to revive my almost dead operating system now and then, but it just seems impossible to find any time to work on it.

That said, I made a recent attempt to make a transition from a "monolithic" kernel to a "monolithic-micro" hybrid but it was cut short as I was called back to work. Fortunately, I was able to (sort of) complete the message-passing interface and revamp some of the GUI elements. Since this project is most likely to be on hiatus for indefinite period of time (probably, forever), I just could not resist posting a screenshot before it rests:

It is amazing how things look exactly the same as it used to seven years back. (for anyone interested, the old screenshots are here. ).

Accounting for a rare possibility that someone might actually be interested to test it out, here's where you can find it.

Cheers,
ch1ndra
Attachments
screenshot (1).jpg
rwosdev
Member
Member
Posts: 49
Joined: Thu Apr 26, 2018 11:21 pm

Re: What does your OS look like? (Screen Shots..)

Post by rwosdev »

Looks wonderful, great job!
adamfc2000
Posts: 6
Joined: Thu Apr 06, 2017 2:59 pm

Re: What does your OS look like? (Screen Shots..)

Post by adamfc2000 »

Not much compared to all the other projects here, but I just started my (currently unnamed) OS and got a second stage bootloader loaded by name from a FAT16 filesystem :)
Attachments
screenshot1.png
screenshot1.png (8.01 KiB) Viewed 8506 times
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Octacone »

This is probably the best feeling ever. :D
I have finally finished writing my FAT 32 bootloader. (took me around 6 month including breaks)
As you can see today I managed to load my 32 bit kernel for the first time.
pmode_kernel.png
All in all don't let people discourage you. Writing a bootloader is hard, but is it impossible? No! It definitely is possible, just takes time and practice.
This project was a nice assembly learning experience.
I you want to do something similar just don't follow the online tutorials, they are the worst! (when you start to understand how stuff works you realize it) If you understand how something works, you can code it.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
ilmmatias
Member
Member
Posts: 35
Joined: Fri Jun 02, 2017 3:01 pm
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by ilmmatias »

After many problems, CHicago now has a working virtual memory manager!

Image
klange
Member
Member
Posts: 679
Joined: Wed Mar 30, 2011 12:31 am
Libera.chat IRC: klange
Discord: klange

Re: What does your OS look like? (Screen Shots..)

Post by klange »

Image

Python successfully running (with windowing system bindings!) in ToaruOS-NIH, with a fully custom C library. Python itself is the only third-party code here.
User avatar
DeezRamChips
Member
Member
Posts: 132
Joined: Fri Apr 08, 2016 5:03 am
Location: atapio.cpp - why won't you work :(
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by DeezRamChips »

Holy damn, that looks sooo good !!!
reminds me of unbuntu 14.04 lol

Here's where i'm at with the dev of MemeOS (aka PenutOS)
Not very usefull, but it does stuff I guess xD
Image
User avatar
qookie
Member
Member
Posts: 72
Joined: Sun Apr 30, 2017 12:16 pm
Libera.chat IRC: qookie
Location: Poland

Re: What does your OS look like? (Screen Shots..)

Post by qookie »

Quite a bit has changed since my last post, the kernel is in no way stable yet, but it's pretty damn stable(I started in on a real machine with a program which continously ran ls and after an hour it still was running). I am still yet to port a C library(most likely will go with Newlib). I also still need to implement command line arguments. I also implemented interprocess communication based on message queues. There was also a bug where my memory allocator was returning memory in the middle of some other stuff which caused a ton of issues which I temporarly fixed it by using liballoc(I want to fix my allocator). Well, enough talking, here's a GIF of current progress:
Attachments
Peek 2018-07-02 20-13.gif
Working on managarm.
GUGDUN
Posts: 3
Joined: Thu Mar 31, 2016 11:25 am
Libera.chat IRC: GUGDUN

Re: What does your OS look like? (Screen Shots..)

Post by GUGDUN »

Working on GUI now.
Attachments
ezgif.com-optimize.gif
ezgif.com-crop.gif
User avatar
nakst
Member
Member
Posts: 51
Joined: Sun Jan 17, 2016 7:57 am

Re: What does your OS look like? (Screen Shots..)

Post by nakst »

1 year of development... and now it's working on real hardware!! 8)
(Or at least, my old laptop...)

https://www.youtube.com/watch?v=kNZSZ1uN8tY


Sorry for bad video quality.
bzt9999
Posts: 8
Joined: Sun Jul 01, 2018 11:13 am

Re: What does your OS look like? (Screen Shots..)

Post by bzt9999 »

Hi,

I've reached pre-alpha state :-)

Here are some screenshots of the rescue shell. It's a microkernel, so behind the scenes lots of things happening when you press a key. To grasp the complexity involved, here's a brief list:
1. IRQ handler awakes the PS2 task and sends an IRQ message to it
2. PS2 task recevies the message and reads 8042, and sends a keypress message to the UI task with scancode
3. UI task receives it, translates to keycode according to the loaded keyboard map
4. UI task sees that the focused window is a tty window, so it translates the keycode further to a csi sequence and sends it to the FS task
5. the FS task puts the csi code into the shell's stdin pipe
6. shell reads it's stdin, and receives the csi code
7. shell writes the code to it's stdout
8. FS task receives the write, and sees that the pipe belongs to a tty window, so it forwards the message to the UI task
9. the UI task receives the csi code, and sees it's for a tty window, therefore forwards it to the vt driver
10. the vt driver renders the csi code into the window pixel buffer, and tells the compositor that window area is dirty
11. the compositor composes windows (only one for now), and updates the framebuffer
12. you see the key you've typed :-)

In rescue shell mode there's only one fullscreen window for a root shell, which is started in place of the init system service. Hopefully soon I'll have a real init task too :-)
Attachments
The rescue shell
The rescue shell
oszrsh.png (7.96 KiB) Viewed 7051 times
The rescue shell in German
The rescue shell in German
oszrsh3.png (4.57 KiB) Viewed 7051 times
The rescue shell in Russian
The rescue shell in Russian
oszrsh2.png (3.69 KiB) Viewed 7051 times
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Octacone »

Software_Multitasking.png
Software_Multitasking.png (7.61 KiB) Viewed 6703 times
  • Implemented multitasking for the first time ever. Simple round robbing scheduler.
  • Moved to higher half
  • Switched to PAE
  • Shortened my life by 200 years while doing so...
I still need to fix a bug where one of the tasks is simply skipped.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
tolaave
Posts: 1
Joined: Sun Jul 29, 2018 6:56 pm

Re: What does your OS look like? (Screen Shots..)

Post by tolaave »

QEmu (x86/BIOS) running some old stuff I worked on long time ago
QEmu (x86/BIOS) running some old stuff I worked on long time ago
Hi, this is my first post in this group. Decided that after 8+ years of reading all the cool things posted here, it's time to share something I worked long time ago.

I call this operating system "CatOS", because cats are cool, and it rhymes with "MacOS". I'm not sure when I'll ever have chance to continue work on this, but if I ever get any progress I'll post it here.
MollenOS
Member
Member
Posts: 202
Joined: Wed Oct 26, 2011 12:00 pm

Re: What does your OS look like? (Screen Shots..)

Post by MollenOS »

Managed to do some more work on my user interface after fixing a lot of errors related to the IPC in my system. Also finally got text-rendering up and running. The buttons are not yet connected to any functionality, I still need to connect a few things to handle the user input in the window manager, but I'm pretty proud of the progress!

Image
dseller
Member
Member
Posts: 84
Joined: Thu Jul 03, 2014 5:18 am
Location: The Netherlands
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by dseller »

tolaave wrote:
old_os_stuff_qemu.png
Hi, this is my first post in this group. Decided that after 8+ years of reading all the cool things posted here, it's time to share something I worked long time ago.

I call this operating system "CatOS", because cats are cool, and it rhymes with "MacOS". I'm not sure when I'll ever have chance to continue work on this, but if I ever get any progress I'll post it here.
Love the old-school dotted Macintosh boot background! I'm probably going to use that as well :wink:
Post Reply