Exclaim 0.3.0 released

This forums is for OS project announcements including project openings, new releases, update notices, test requests, and job openings (both paying and volunteer).
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Exclaim 0.3.0 released

Post by xyzzy »

Hey,

I've just released version 0.3.0 of Exclaim. I've fixed quite a few bugs that people reported to me in IRC and on the bugtracker since 0.3-rc1 - in particular a couple of very big memory leaks in my Ext2 driver that meant installation required at least 512MB of RAM! Installation should work with 32MB now.

New features (not a complete list)
  • AMD64 port
  • Dynamic linking
  • Signals
  • Block cache for block devices
  • Ext2 filesystem write support
  • ISO9660 + Joliet filesystem support
  • Symbolic link support in VFS
  • PCI driver
  • Improved ATA driver, uses the PCI driver for detection, supports ATAPI devices
  • New terminal driver, supports a lot more escape sequences, implements POSIX termios stuff
  • Simple kernel debugger
  • Hard disk installation support
  • Lots of bugs fixed
Software ports
  • Bash
  • GCC/Binutils/Make
  • Ncurses + Nano
  • Grep
  • Sed
  • BSD tar + libarchive
  • Ruby (currently has a bug that causes it to segfault occassionally - can be worked around by placing GC.disable at the start of the script)
  • Cairo graphics library (without font rendering support). There are test apps using it in the installation (cairotest-image, cairotest-video and pngdisplay) as well as their source code. These apps require 32-bit graphics modes - if using QEMU, run it with the '-std-vga' parameter (SVN versions of QEMU need '-vga std')
It's possible to compile Exclaim from inside itself - the source is included in the installation, just run 'make config' from /User/Source/exclaim, configure it for the architecture you're running, and run 'make all-kernel all-drivers' to compile the kernel/drivers.

Note that to get access to all the stuff included, installation to a hard disk is required. If you do not wish to install, it is still possible to use some things such as Bash and all the core utilities by just booting the installation CD.

For people testing in emulators, the download page has a preformatted hard disk image that can be installed to. I've mentioned in the release notes that the installation filesystem should be formatted without the ext_attr feature enabled - this is because the Ext2 driver doesn't handle this feature and I've seen it cause a few fsck errors (inode/block reference counts wrong) with the feature enabled.

Screenshots

Image
Image
Image
Image
Image

More can be found here

Links Hope you like it! Oh, and if anyone finds any bugs, I'd be grateful if they were reported to the bugtracker (see above). Thanks!
Alex
Martijn
Posts: 22
Joined: Tue Feb 26, 2008 3:43 am
Location: The Netherlands

Re: Exclaim 0.3.0 released

Post by Martijn »

Congrats on your amazing achievements! I'll have a look into 0.3 sometime this week.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Exclaim 0.3.0 released

Post by Combuster »

Looks good from here, CD boots perfectly.

Got some real hardware without OS that I wanted to install to, only to figure that there's no ext2fs formatter nor partitioning tool. (Make that a feature request :))

Now waiting for this 32-bit gentoo installcd to complete downloading so I can fix that :(...
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Re: Exclaim 0.3.0 released

Post by xyzzy »

Yeah, I would have liked to have ported at least e2fsprogs but it seems to be full of Linux-specific code. While testing on real hardware I've been using Parted Magic to format - I have it bootable via PXE which makes things a little bit easier. Make sure that you format without extended attributes as I mentioned - I'm not sure if its necessary, but when using the Ext2 driver on a filesystem that had been created with extended attributes and modified from Linux, I was getting fsck complaining about block reference counts (nothing serious, it won't destroy your filesystem - I hope :D). I'll take a look at it when I get a chance and post what I find here.
User avatar
Stevo14
Member
Member
Posts: 179
Joined: Fri Mar 07, 2008 3:40 am
Location: Arad, Romania

Re: Exclaim 0.3.0 released

Post by Stevo14 »

Tested on real hardware. The cd boots and runs as expected. I ran some programs and then went ahead and installed it to the disk (this is a spare computer btw.). I formatted the disk as the standard ext2 in gparted. Install worked although it was a little long. Rebooted, installed GRUB (as per the instructions at the end of the install), and booted back into exclaim from the hard disk! So, yes, it worked the first time.
Tested on:
  • Intel Pentium M 1.86 Ghz (32 bit)
  • 512Mb RAM
  • Intel ICH6 chipset
  • ATI Mobility Radeon x300 graphics card (external monitor attached. Old laptop doesn't have a screen...)
Things that didn't work:
  • Capslock/Numlock lights
  • Delete key
  • pngdisplay (everything seems to succeed but nothing is displayed, screen is not cleared, terminal remains responsive)
  • anything cairo-related does the same as above.
  • tar seems not to support creating archives.
Everything else that I tested (I didn't test everything) worked well. Current uptime is ~38 minutes. And most importantly, it did all this without a single crash or freeze. =D> Good work!
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Re: Exclaim 0.3.0 released

Post by xyzzy »

Stevo14 wrote:Things that didn't work:
  • Capslock/Numlock lights
  • Delete key
  • pngdisplay (everything seems to succeed but nothing is displayed, screen is not cleared, terminal remains responsive)
  • anything cairo-related does the same as above.
  • tar seems not to support creating archives.
Everything else that I tested (I didn't test everything) worked well. Current uptime is ~38 minutes. And most importantly, it did all this without a single crash or freeze. =D> Good work!
I should have mentioned that pngdisplay and the cairotest apps when given a background image do take a very long time due to the slow disk access. If it still just hangs like that if you use the cairotest apps without a background image, or pngdisplay with logo.png (which is very small, should take around a second to load), then you've found a bug! :)

Capslock/Numlock lights - yeah, I got lazy and forgot to implement turning the LEDs on and off. Delete key: does it put a ~ into the terminal? If so then I think it's bash doing something funny - the escape code that the terminal driver sends for Delete is exactly the same as what gnome-terminal on Linux is sending, and it works there, but not in Exclaim.
User avatar
Stevo14
Member
Member
Posts: 179
Joined: Fri Mar 07, 2008 3:40 am
Location: Arad, Romania

Re: Exclaim 0.3.0 released

Post by Stevo14 »

AlexExtreme wrote:
Stevo14 wrote:Things that didn't work:
  • Capslock/Numlock lights
  • Delete key
  • pngdisplay (everything seems to succeed but nothing is displayed, screen is not cleared, terminal remains responsive)
  • anything cairo-related does the same as above.
  • tar seems not to support creating archives.
Everything else that I tested (I didn't test everything) worked well. Current uptime is ~38 minutes. And most importantly, it did all this without a single crash or freeze. =D> Good work!
I should have mentioned that pngdisplay and the cairotest apps when given a background image do take a very long time due to the slow disk access. If it still just hangs like that if you use the cairotest apps without a background image, or pngdisplay with logo.png (which is very small, should take around a second to load), then you've found a bug! :)
Well, now I feel really ignorant. Apparently the video device is "/Devices/video/video0", not just "/Devices/video". :) Now both pngdisplay and cairo-related commands work (and look very nice btw).
AlexExtreme wrote: Delete key: does it put a ~ into the terminal? If so then I think it's bash doing something funny - the escape code that the terminal driver sends for Delete is exactly the same as what gnome-terminal on Linux is sending, and it works there, but not in Exclaim.
Yes, the delete key puts a ~ on the terminal. It's not a major issue though because the arrow keys work as expected still allowing me to edit the command line.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Exclaim 0.3.0 released

Post by Combuster »

Hmm, I booted off a gentoo livecd, partitioned the harddrive and created two ext2, a fat, and a swap partition on the 3G harddrive. (hadn't done things except testing OSes since it was wiped by its previous owner)

Rebooting into exclaim showed that it didn't detect the extended partitions (just 2G raw). I tried installing to a 512M ext2 primary partition, but the installer failed with an invalid argument when trying to mount the partitions.

I tried mounting stuff manually, but it gave invalid argument errors when I passed ext2 as the FS, and a device not found with e2fs as the filesystem. I didn't try mounting the CD yet.

Oh and, the arrow keys print numbers rather than editing/browsing commands. tab completion does work however.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
VolTeK
Member
Member
Posts: 815
Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation

Re: Exclaim 0.3.0 released

Post by VolTeK »

it looks great, i like how it reads scripts like ruby, makes a big plus in creativity, can you make your gui with ruby? or does that just make the objects? i will look that up, im not big on ruby
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Re: Exclaim 0.3.0 released

Post by xyzzy »

Combuster wrote:Rebooting into exclaim showed that it didn't detect the extended partitions (just 2G raw). I tried installing to a 512M ext2 primary partition, but the installer failed with an invalid argument when trying to mount the partitions.
The partmgr driver doesn't support extended partitions yet. Would you mind repartitioning without an extended partition on the drive and trying again? Somebody reported to me that when they had an extended partition, the LBA addresses of the primary partitions that were read from the partition table were out by 63 blocks.
Combuster wrote:Oh and, the arrow keys print numbers rather than editing/browsing commands. tab completion does work however.
Hmm, interesting. I'll see if I can reproduce that somewhere and I'll try to find out what's wrong.
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: Exclaim 0.3.0 released

Post by JamesM »

Combuster wrote:Oh and, the arrow keys print numbers rather than editing/browsing commands. tab completion does work however.
Hmm, interesting. I'll see if I can reproduce that somewhere and I'll try to find out what's wrong.[/quote]


Could be the termcap file - make sure your terminal capabilities and command strings are actually defined rather than letting bash make up its own (learned from experience).
eddyb
Member
Member
Posts: 248
Joined: Fri Aug 01, 2008 7:52 am

Re: Exclaim 0.3.0 released

Post by eddyb »

the kb is still funny, funky, tell it how do you want.
Problems with the kb:
1. in the scancode table the arrows, the special keys are the same with the numpad keys. so if you activate numlock, both of the arrow keys and the arrow keys on the numpad, and some other stuff transforms into numbers.
2. the keyboard layout is en-uk, so you have to choose it when on a emulator(-k en-gb in qemu)
3. the special keys(those with the escape codes), i mean their escape codes, are added all, but (i think the first char, which is the same for all, it think '[') the buffer is increased with -1 number(one char not counted). so if you press x special keys, you cannot delete x chars(x char remains after deleting all, but is threaten like nothing).
Craze Frog
Member
Member
Posts: 368
Joined: Sun Sep 23, 2007 4:52 am

Re: Exclaim 0.3.0 released

Post by Craze Frog »

Is this a monolithic kernel?
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Re: Exclaim 0.3.0 released

Post by xyzzy »

Craze Frog wrote:Is this a monolithic kernel?
Yes.
Craze Frog
Member
Member
Posts: 368
Joined: Sun Sep 23, 2007 4:52 am

Re: Exclaim 0.3.0 released

Post by Craze Frog »

So how do you achieve this design goal?
We will make the system highly modular - any part of the OS should be able to to be swapped out with a different implementation easily. Modules will be stable and, where possible, not bring down the whole system if one crashes.
Post Reply