OSDev.org
https://forum.osdev.org/

What does your OS look like? (Screen Shots..)
https://forum.osdev.org/viewtopic.php?f=1&t=12087
Page 220 of 260

Author:  ch1ndra [ Tue Jun 12, 2018 11:32 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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
screenshot (1).jpg [ 108.99 KiB | Viewed 7400 times ]

Author:  rwosdev [ Tue Jun 12, 2018 11:59 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Looks wonderful, great job!

Author:  adamfc2000 [ Sat Jun 16, 2018 12:47 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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 7187 times ]

Author:  Octacone [ Wed Jun 20, 2018 11:19 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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.
Attachment:
pmode_kernel.png
pmode_kernel.png [ 23.88 KiB | Viewed 6995 times ]

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.

Author:  yuuma [ Sat Jun 23, 2018 7:59 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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

Image

Author:  klange [ Mon Jun 25, 2018 7:20 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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.

Author:  DeezRamChips [ Thu Jun 28, 2018 6:12 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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

Author:  qookie [ Mon Jul 02, 2018 12:36 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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
Peek 2018-07-02 20-13.gif [ 37.92 KiB | Viewed 6439 times ]

Author:  GUGDUN [ Wed Jul 04, 2018 3:32 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Working on GUI now.

Attachments:
ezgif.com-optimize.gif
ezgif.com-optimize.gif [ 113.56 KiB | Viewed 6329 times ]
ezgif.com-crop.gif
ezgif.com-crop.gif [ 71.19 KiB | Viewed 6329 times ]

Author:  nakst [ Thu Jul 12, 2018 3:03 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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.

Author:  bzt9999 [ Wed Jul 18, 2018 7:05 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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:
File comment: The rescue shell
oszrsh.png
oszrsh.png [ 7.96 KiB | Viewed 5732 times ]
File comment: The rescue shell in German
oszrsh3.png
oszrsh3.png [ 4.57 KiB | Viewed 5732 times ]
File comment: The rescue shell in Russian
oszrsh2.png
oszrsh2.png [ 3.69 KiB | Viewed 5732 times ]

Author:  Octacone [ Fri Jul 27, 2018 4:56 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Attachment:
Software_Multitasking.png
Software_Multitasking.png [ 7.61 KiB | Viewed 5384 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.

Author:  tolaave [ Sun Jul 29, 2018 7:13 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Attachment:
File comment: QEmu (x86/BIOS) running some old stuff I worked on long time ago
old_os_stuff_qemu.png
old_os_stuff_qemu.png [ 100.6 KiB | Viewed 5293 times ]

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.

Author:  MollenOS [ Mon Jul 30, 2018 6:48 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

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

Author:  dseller [ Fri Aug 03, 2018 1:28 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

tolaave wrote:
Attachment:
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:

Page 220 of 260 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/