Page 143 of 262

My _new_ boot screen

Posted: Thu Mar 10, 2016 4:32 pm
by RharryR
Did a bit of messing with the boot screen this morning, and got this. Any how, off to school :)

Image

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

Posted: Fri Mar 11, 2016 6:11 am
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 :-(

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

Posted: Sat Mar 12, 2016 9:21 pm
by ablakely
Image

Here's mine so far.

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

Posted: Sat Mar 12, 2016 9:37 pm
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.

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

Posted: Sat Mar 12, 2016 10:01 pm
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.

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

Posted: Sat Mar 12, 2016 11:59 pm
by osdever
U365 is now on real hardware!

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

Posted: Sun Mar 13, 2016 1:39 am
by osdever
And on my development PC too,

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

Posted: Tue Mar 15, 2016 12:53 pm
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 ;)

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

Posted: Mon Mar 21, 2016 1:42 am
by max
Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P

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

Posted: Thu Mar 24, 2016 5:54 am
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

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

Posted: Sat Mar 26, 2016 4:17 pm
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

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

Posted: Mon Mar 28, 2016 12:52 pm
by osdever
max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff :P
Very cool OS!

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

Posted: Fri Apr 01, 2016 12:21 pm
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

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

Posted: Fri Apr 01, 2016 2:43 pm
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.

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

Posted: Fri Apr 01, 2016 2:52 pm
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! :)