Page 220 of 262

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

Posted: Tue Jun 12, 2018 11:32 pm
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

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

Posted: Tue Jun 12, 2018 11:59 pm
by rwosdev
Looks wonderful, great job!

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

Posted: Sat Jun 16, 2018 12:47 pm
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 :)

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

Posted: Wed Jun 20, 2018 11:19 am
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.

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

Posted: Sat Jun 23, 2018 7:59 pm
by ilmmatias
After many problems, CHicago now has a working virtual memory manager!

Image

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

Posted: Mon Jun 25, 2018 7:20 am
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.

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

Posted: Thu Jun 28, 2018 6:12 am
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

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

Posted: Mon Jul 02, 2018 12:36 pm
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:

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

Posted: Wed Jul 04, 2018 3:32 pm
by GUGDUN
Working on GUI now.

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

Posted: Thu Jul 12, 2018 3:03 pm
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.

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

Posted: Wed Jul 18, 2018 7:05 am
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 :-)

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

Posted: Fri Jul 27, 2018 4:56 pm
by Octacone
Software_Multitasking.png
Software_Multitasking.png (7.61 KiB) Viewed 6698 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.

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

Posted: Sun Jul 29, 2018 7:13 pm
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.

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

Posted: Mon Jul 30, 2018 6:48 am
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

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

Posted: Fri Aug 03, 2018 1:28 am
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: