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.
User avatar
Roman
Member
Member
Posts: 568
Joined: Thu Mar 27, 2014 3:57 am
Location: Moscow, Russia
Contact:

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

Post by Roman »

muazzam wrote:
SayedMohsen64 wrote: I aim for a megalithic kernel design, similar to that of Dex OS.
According to osdev wiki "The (megalithic) kernel would need to be recompiled any time a new application is installed, removed, or otherwise altered.". DexOS is not magalithic in this sense. According to Wikipedia, DexOS is monolithic kernel. If DexOS is megalithic, then DOS is also megalithic.
AFAIK, megalithic kernels are those, which are aimed at running only one app.
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
User avatar
Roman
Member
Member
Posts: 568
Joined: Thu Mar 27, 2014 3:57 am
Location: Moscow, Russia
Contact:

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

Post by Roman »

SayedMohsen64, it is your option, but why is your versioning system so strange? Most software uses this: major.minor.bugfix. According to this, the initial version should be 0.1.
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
User avatar
Muazzam
Member
Member
Posts: 543
Joined: Mon Jun 16, 2014 5:59 am
Location: Shahpur, Layyah, Pakistan

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

Post by Muazzam »

Roman wrote: AFAIK, megalithic kernels are those, which are aimed at running only one app.
No, OS which runs single application is called mono-tasking operating system. It has nothing to do with monolithic or megalithic.
SayedMohsen64
Posts: 16
Joined: Mon Jan 26, 2015 2:56 am

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

Post by SayedMohsen64 »

muazzam wrote:According to osdev wiki "The (megalithic) kernel would need to be recompiled any time a new application is installed, removed, or otherwise altered.". DexOS is not magalithic in this sense. According to Wikipedia, DexOS is monolithic kernel. If DexOS is megalithic, then DOS is also megalithic.
Read carefully. They said it would need to be recompiled if programs are part of the kernel binary itself. You don't seriously think I'm going to implement my programs as part of the kernel!
SayedMohsen64
Posts: 16
Joined: Mon Jan 26, 2015 2:56 am

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

Post by SayedMohsen64 »

Roman wrote:SayedMohsen64, it is your option, but why is your versioning system so strange? Most software uses this: major.minor.bugfix. According to this, the initial version should be 0.1.
Because I am just starting and the first version is not 0.1, I am starting from 0.0 because the system is very incomplete. It doesn't even have memory management yet.
Dinso
Posts: 8
Joined: Mon Jan 12, 2015 8:59 am

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

Post by Dinso »

The Dinso Team hasn't posted a screenshot in a while. We're redesigning the desktop. There is no more taskbar. Instead, running applications are shown in the Applications menu above. The desktop is empty for now, but soon it will contain shortcuts. One of our newest additions is better alpha blending and transparent windows.
There's a lot going on behind the scenes too -- our kernel is now as modular as Linux, and we're almost finishing a compiler. We have FASM ported here. When we finish our compiler, we can port NASM and be completely self hosting! :)
Attachments
New desktop demonstrating transparent windows.
New desktop demonstrating transparent windows.
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

SayedMohsen64 wrote:I have a nearly completed boot loader for my OS project Neon.
Please stop imitating everything my OS does. I've had a bootloader that looks exactly like that since 4 days.
Please stop doing everything I do for my OS. Have your own personality.
Attachments
bootloader.png
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
Muazzam
Member
Member
Posts: 543
Joined: Mon Jun 16, 2014 5:59 am
Location: Shahpur, Layyah, Pakistan

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

Post by Muazzam »

omarrx024 wrote: Please stop imitating everything my OS does. I've had a bootloader that looks exactly like that since 4 days.
Please stop doing everything I do for my OS. Have your own personality.
So, you were right then: :)
omarrx024 wrote:
Roman wrote:Why is ZeroOS a closed source OS?
@Roman Because people who are inspired by my project will simply copy and paste my code.
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

muazzam wrote:
omarrx024 wrote: Please stop imitating everything my OS does. I've had a bootloader that looks exactly like that since 4 days.
Please stop doing everything I do for my OS. Have your own personality.
So, you were right then: :)
omarrx024 wrote:
Roman wrote:Why is ZeroOS a closed source OS?
@Roman Because people who are inspired by my project will simply copy and paste my code.
Yep -- here's someone who's copying my code, my design, my look-n-feel, my filesystem. This probably seems like Vector number two. :mrgreen:
At least all I copied from you was the MBR. :)
You know your OS is advanced when you stop using the Intel programming guide as a reference.
SayedMohsen64
Posts: 16
Joined: Mon Jan 26, 2015 2:56 am

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

Post by SayedMohsen64 »

omarrx024 wrote:Please stop imitating everything my OS does. I've had a bootloader that looks exactly like that since 4 days.
Please stop doing everything I do for my OS. Have your own personality.
Oh okay, sorry. I thought your project was GPL'd...
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

SayedMohsen64 wrote:Oh okay, sorry. I thought your project was GPL'd...
It is GPL'd and you are allowed to use my code. Just don't imitate me and everything I do, please. Of course, you can use my code in your OS, that is the meaning of GPL after all.
You know your OS is advanced when you stop using the Intel programming guide as a reference.
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 »

It's good to get back into things after a long hiatus, so here's some telnet ASCII Star Wars.

Image

And since someone's going to ask for it, connected to my own telnet server:

Image

I've got a "release" target coming up in a couple of months, and getting this TCP stack into a generally usable state is an important goal.
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

klange wrote:It's good to get back into things after a long hiatus
Seriously, all you need is a package manager and your OS can be used as a Linux distro. =D>
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
Muazzam
Member
Member
Posts: 543
Joined: Mon Jun 16, 2014 5:59 am
Location: Shahpur, Layyah, Pakistan

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

Post by Muazzam »

omarrx024 wrote: But a programmer would need an %include file with all the macros, which I don't want.
But why?. Without include files, programmers will have to remember all the system call numbers (if writing in assembly). What if there 100+ system calls?. And scripting languages have certain limits.
User avatar
bace
Member
Member
Posts: 34
Joined: Fri Jan 16, 2015 10:41 am
Location: United Kingdom

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

Post by bace »

Hi! First post here.
I've been working on a bootloader for around two weeks, and I've begun work on a kernel. It's not much against everyone else's operating systems, but it's a start :D
It's called "Calcium", and the screenshot shows a simple hello world message.
Attachments
A simple hello world message!
A simple hello world message!
calcium001.png (7.75 KiB) Viewed 4335 times
"for example, turning off the system’s power through the movement of a large red switch" - the Advanced Configuration and Power Interface Specification
Post Reply