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.
RharryR
Posts: 17
Joined: Thu Feb 11, 2016 1:15 am
Location: Milingimbi Island, Australia

My _new_ boot screen

Post by RharryR »

Did a bit of messing with the boot screen this morning, and got this. Any how, off to school :)

Image
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

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

Post by osdever »

quxuan wrote:
catnikita255 wrote:U365 on Bochs. See that cool text in the bottom :D
why i can not open your website? I want see your source code, have you put your code on github?
Oh, yes. gitlab.com/bps-projs/U365/tree/testing. My website is down :-(
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
ablakely
Posts: 11
Joined: Wed Jan 23, 2013 9:01 am

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

Post by ablakely »

Image

Here's mine so far.
cheapskate01
Member
Member
Posts: 58
Joined: Sat Aug 01, 2015 9:05 pm

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

Post by cheapskate01 »

ablakely wrote: Here's mine so far.
I'll hand it to you, you can make elementary OS work, and that earns my respect. I couldn't get it to do well for the life of me.
"That I'm in forum signatures is just a sign the invasion of sortie is nearing completion. Soon you'll all have to become me to defeat me." ~ Sortie
ablakely
Posts: 11
Joined: Wed Jan 23, 2013 9:01 am

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

Post by ablakely »

cheapskate01 wrote: I'll hand it to you, you can make elementary OS work, and that earns my respect. I couldn't get it to do well for the life of me.
I like it so far, been using it for about two years on my second computer. When my Macbook gave out, it became my main OS. But linux isn't anything new to me, been using it for going on 8 years now.
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

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

Post by osdever »

U365 is now on real hardware!
Attachments
U365_on_real_machine.jpg
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

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

Post by osdever »

And on my development PC too,
Attachments
2016-03-13 11.38.56.jpg
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
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 »

The current state of ttOS!
2016-03-15 19_52_35-ttOS.png
And showing off my directory listing code:
2016-03-15 19_54_28-Bochs for Windows - Display.png
P.S. Yes there is a memory leak ;)
User avatar
max
Member
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..)

Post by max »

Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P
Attachments
12884500_1085948658121893_732693828_n.jpg
glauxosdever
Member
Member
Posts: 501
Joined: Wed Jun 17, 2015 9:40 am
Libera.chat IRC: glauxosdever
Location: Athens, Greece

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

Post by glauxosdever »

Hi,

max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P
I'm wondering, don't you have stdio redirection? Like this:

Code: Select all

echo "mov eax, 1337" > test.asm
echo "mov ebx, eax" >> test.asm

Regards,
glauxosdever
User avatar
max
Member
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..)

Post by max »

glauxosdever wrote:I'm wondering, don't you have stdio redirection? Like this:

Code: Select all

echo "mov eax, 1337" > test.asm
echo "mov ebx, eax" >> test.asm[/quote]
Hi glauxosdever,

I have not implemented it in the terminal as I have pipes and did not see the need yet. The "read" and "write" commands do basically the same that the redirect operator would do for files. :P

Greest,
Max
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

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

Post by osdever »

max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P
Very cool OS!
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
grsan
Posts: 2
Joined: Fri Apr 01, 2016 12:06 pm
Libera.chat IRC: Grsan

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

Post by grsan »

Hey, so I have been working on my os for a short time, there is very little to see. However, I have implemented basic commands, and I am working on a hex editor. File system coming soon, but for now, this is what it looks like:

Image

Image

Whew. I sure do hope it turns out well. :D
User avatar
Ycep
Member
Member
Posts: 401
Joined: Mon Dec 28, 2015 11:11 am

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

Post by Ycep »

grsan wrote:Hey, so I have been working on my os for a short time, there is very little to see. However, I have implemented basic commands, and I am working on a hex editor. File system coming soon, but for now, this is what it looks like:

Image

Image

Whew. I sure do hope it turns out well. :D
Nice GUI, but i think you made it very strange. You shrinked the terminal so much. And, i think is best to make GUIs graphical. Take a look at Windows 95;Image.
Now just imagine how bad it could look in text 80x25 mode. I think that your next step to your OS is VGA or simplest graphics driver. Cool work, for now 8). If you wish to continue with hex editor and FAT, there is one tip:don't make TUI shells.
User avatar
max
Member
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..)

Post by max »

catnikita255 wrote:
max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P
Very cool OS!
Thank you friend! :)
Post Reply