What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
I have built a new package manager and package format for my OS. Previously, I had a "package" system consisting of a large manifest of instructions on how to download some files and install them, with operations that included mounting tmpfses, symlinking files, decompressing and mounting ext2 images - it was a mess that was only really meant to automate some things I was already doing to test ported software. Now I've spent a bunch of time ensuring my live CDs have a proper read-write root filesystem (through an in-memory tmpfs initialized at boot with the real filesystem contents), designed a package file format (a specially-crafted gzipped tarball, which is similar to how formats like Deb work) and redesigned my package manager UI. I ported all of my old packages to the new format, and even built a website to browse available packages.
(For reference, the old package manager UI looked like this)
(For reference, the old package manager UI looked like this)
Re: What does your OS look like? (Screen Shots..)
Very nice work! I've now got a little time to get back to some minor development, but won't achieve anything like that.
Just slightly jealous
Cheers,
Adam
Just slightly jealous
Cheers,
Adam
-
- Member
- Posts: 50
- Joined: Sat Mar 21, 2009 9:42 pm
Re: What does your OS look like? (Screen Shots..)
That's super impressive. Have you done all the development yourself?klange wrote:I have built a new package manager and package format for my OS. Previously, I had a "package" system consisting of a large manifest of instructions on how to download some files and install them, with operations that included mounting tmpfses, symlinking files, decompressing and mounting ext2 images - it was a mess that was only really meant to automate some things I was already doing to test ported software. Now I've spent a bunch of time ensuring my live CDs have a proper read-write root filesystem (through an in-memory tmpfs initialized at boot with the real filesystem contents), designed a package file format (a specially-crafted gzipped tarball, which is similar to how formats like Deb work) and redesigned my package manager UI. I ported all of my old packages to the new format, and even built a website to browse available packages.
(For reference, the old package manager UI looked like this)
Also, I know you're trying to develop as much of the userspace yourself but how far off would porting a mainstream browser like Firefox be? If you could do that you could run it as a daily OS
- MajickTek
- Member
- Posts: 101
- Joined: Sat Dec 17, 2016 6:58 am
- Libera.chat IRC: MajickTek
- Location: The Internet
- Contact:
Re: What does your OS look like? (Screen Shots..)
Ikr! This is probably the biggest, most powerful hobby OS here (if not ever!) Being developed by one person (also remarkable!).smeezekitty wrote:
...how far off would porting a mainstream browser like Firefox be? If you could do that you could run it as a daily OS
litehtml would be a good option as it is obviously very light, and provides rendering for HTML and CSS. I don't know what you could do about JavaScript though.klange wrote: ...thinking of using litehtml...
EDIT: just realised I quoted from your GitHub wiki and not this forum. Hopefully you'll understand what I am referencing!
Everyone should know how to program a computer, because it teaches you how to think! -Steve Jobs
Code: Select all
while ( ! ( succeed = try() ) );
Re: What does your OS look like? (Screen Shots..)
I just thought I would post a (my first) screen shot.
Had a little time these past few weeks, off and on, adding a few features, changing a few things, etc.
It is nice to get away from work, and just play every now and then
- http://www.fysnet.net/fysos.htm
- MajickTek
- Member
- Posts: 101
- Joined: Sat Dec 17, 2016 6:58 am
- Libera.chat IRC: MajickTek
- Location: The Internet
- Contact:
Re: What does your OS look like? (Screen Shots..)
Looks a bit like a combination of Windows 95, Windows 3.1, and NextStep.BenLunt wrote:
I just thought I would post a (my first) screen shot.
Had a little time these past few weeks, off and on, adding a few features, changing a few things, etc.
It is nice to get away from work, and just play every now and then
- http://www.fysnet.net/fysos.htm
Everyone should know how to program a computer, because it teaches you how to think! -Steve Jobs
Code: Select all
while ( ! ( succeed = try() ) );
Re: What does your OS look like? (Screen Shots..)
I have only used a Windows host most of my career, well after DOS, then started with Win3.11 (for workgroups), and with little to no imagination, this is what I got. The good thing is the core windowing system is separate from the drawing system. I can draw the windows however I want and the core windowing system will work identically. Maybe it's time for some research and creativity?MajickTek wrote:Looks a bit like a combination of Windows 95, Windows 3.1, and NextStep.BenLunt wrote:
I just thought I would post a (my first) screen shot.
Had a little time these past few weeks, off and on, adding a few features, changing a few things, etc.
It is nice to get away from work, and just play every now and then
- http://www.fysnet.net/fysos.htm
Thanks,
Ben
- MajickTek
- Member
- Posts: 101
- Joined: Sat Dec 17, 2016 6:58 am
- Libera.chat IRC: MajickTek
- Location: The Internet
- Contact:
Re: What does your OS look like? (Screen Shots..)
I own a copy of Windows 3.11 for Workgroups and personally love it. It runs smoothly on DOSBOX and works well in general. Along with Borland Turbo C/C++ it is a nice developement workflow for me.BenLunt wrote: I have only used a Windows host most of my career, well after DOS, then started with Win3.11 (for workgroups), and with little to no imagination, this is what I got. The good thing is the core windowing system is separate from the drawing system. I can draw the windows however I want and the core windowing system will work identically. Maybe it's time for some research and creativity?
Thanks,
Ben
I have a ~15 year old computer that originally came with Windows Vista and am planning on migrating away from DOSBOX to FreeDOS soon. The computer is a Dell Latitude D630 laptop with 1GB of memory. That will be my OSDev environment.
Everyone should know how to program a computer, because it teaches you how to think! -Steve Jobs
Code: Select all
while ( ! ( succeed = try() ) );
-
- Member
- Posts: 50
- Joined: Sat Mar 21, 2009 9:42 pm
- MajickTek
- Member
- Posts: 101
- Joined: Sat Dec 17, 2016 6:58 am
- Libera.chat IRC: MajickTek
- Location: The Internet
- Contact:
Re: What does your OS look like? (Screen Shots..)
Is it an Arduino (or similar board), or a PCB of some kind?smeezekitty wrote:Running on an Atmega328P
Everyone should know how to program a computer, because it teaches you how to think! -Steve Jobs
Code: Select all
while ( ! ( succeed = try() ) );
-
- Member
- Posts: 50
- Joined: Sat Mar 21, 2009 9:42 pm
Re: What does your OS look like? (Screen Shots..)
It's just on a breadboard. But it would run fine on an Arduino if you flash a slightly modified bootloader that allows writing to flash from application space and adapted an SD card. I used a breadboarded chip because that way I can easily run the whole thing on 3.3V negating the need for level conversion for the SD card. Just one resistor divider needed for serial RX.MajickTek wrote:Is it an Arduino (or similar board), or a PCB of some kind?smeezekitty wrote:Running on an Atmega328P
Re: What does your OS look like? (Screen Shots..)
Oh, I see you are posting Putty outputs, so I got excited seeing familiar images, and decided to post my own too. It's when my UEFI for mips FW finally has learnt to initialize SDRAM and, when I splitted the Sec phase into several .S files with necessary modifications (using stack, and doing that properly, with stack frames etc). Now everything is open for the Dxe deployment, which is basically UEFI itself (Boot Services). But before, I need to implement a loading CFV (Core Firmware Volume) into memory from an SD card. Because Dxe Foundation wants Firmware Volumes memory mapped, and not having NOR flash here, we have to load our CFV into SDRAM and then Dxe dispatcher will be fetching from there the Dxe drivers and loading them as PE images and running. That will be UEFI. Of course having a cute output on an hdmi monitor would be so nice, but I have to admit, it's not easy here, the documentation on this part is scarce, there is no VGA, you need to deal with a fully graphical system (LCD, HDMI, all that framebuffer stuff).
PS. And don't ask why it runs twice, it always does so, with any software - uboot/ linux or my FW. It gets reset again immediately after having run some tens of instructions in the FW. The reasons are outside of my code, something in the board design.
PS. And don't ask why it runs twice, it always does so, with any software - uboot/ linux or my FW. It gets reset again immediately after having run some tens of instructions in the FW. The reasons are outside of my code, something in the board design.
Re: What does your OS look like? (Screen Shots..)
My first GUI Shell Experiment, this is actually window with title bar and close button
No text rendering yet as I am planning to port stb_truetype.
I am planning to make it more like widget - style.
No text rendering yet as I am planning to port stb_truetype.
I am planning to make it more like widget - style.
Developing ZeroX Operating System;
I code C++ so much that I am ending English Statements & Replies with semi-colon instead of dot;
I code C++ so much that I am ending English Statements & Replies with semi-colon instead of dot;
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: What does your OS look like? (Screen Shots..)
Duktape!MajickTek wrote:litehtml would be a good option as it is obviously very light, and provides rendering for HTML and CSS. I don't know what you could do about JavaScript though.klange wrote: ...thinking of using litehtml...
- MajickTek
- Member
- Posts: 101
- Joined: Sat Dec 17, 2016 6:58 am
- Libera.chat IRC: MajickTek
- Location: The Internet
- Contact:
Re: What does your OS look like? (Screen Shots..)
Technically, Duktape is for a JavaScript subset called EcmaScript, but I guess it would be compatible.max wrote: Duktape!
Everyone should know how to program a computer, because it teaches you how to think! -Steve Jobs
Code: Select all
while ( ! ( succeed = try() ) );