Skip to content

32-bit operating system written from scratch, with alternative user interface, designed for older computers with intention to provide system that will make them usable again

License

VendelinSlezak/BleskOS

Repository files navigation

BleskOS

BleskOS is 32-bit operating system written from scratch. One of main features is alternative graphic user interface that do not use windows, as classic operating systems do, but switches between programs on full screen. BleskOS is designed for older computers. Operating systems of today have very high hardware requirements that make computers even 10 years old completely unusable. Goal of BleskOS is to provide system, that could be installed on such computers and make them usable again.

Snímka obrazovky_2024-02-15_17-48-49

What is new

Here is info about most important improvements in several last updates.

Update 30

  • Significant improvement of IDE related drivers
  • AHCI drivers are suspended in this update because I will completely rewrite them

Update 29

  • Document editor can save files in ODT format
  • Added code for turning on and off PS/2 keyboard capslock LED
  • Many minor fixes, finished reviewing of drivers/sound, drivers/keyboard, drivers/mouse, drivers/ps2

Update 28

  • HDA driver supports headphone output

Update 27

  • AC97 driver supports headphone output
  • Fixed problem with resetting HDA stream
  • You can use key left and key right to move cursor in Document editor

How to try BleskOS

You can download image of last version here on github. Then you have two options:

  1. Run BleskOS on emulator - some of well-known are Virtualbox, QEMU, Bochs and so on. If you downloaded image .img, you should to connect it to emulator as floppy or hard disk, if you downloaded image .iso, you should connect it as optical disk.
  2. Run BleskOS on real computer - If you want to run BleskOS on your computer, you will need to create bootable medium. You can either burn .iso image on optical disk, or write .img image on USB flash. Do not just copy file! You need to write image right from start of USB flash. In linux, you can use program dd for this: sudo dd if=bleskos_(actual version).img of=pathToYourUSB For example if you have USB on /dev/sdg then you can write for example sudo dd if=bleskos_2024u8.img of=/dev/sdg Then insert optical disk/USB flash to your computer and boot it from your bootable medium. If you do not see your bootable medium, make sure that you are booting in legacy mode, because BleskOS do not support UEFI.

If you copied BleskOS image on USB flash, it creates one partition, so you can format rest of USB and use it for data. If you have such USB and you want to update BleskOS image without destroying other partitions, you need to skip first sector of BleskOS image and you need to skip first sector of USB flash and start rewriting from second sector. You can do this by following command: sudo dd if=bleskos_(actual version).img skip=1 of=pathToYourUSB seek=1

How to use BleskOS

During boot, you will see bootloader screen where you can select to boot BleskOS normally, or with special boot options.

VirtualBox_BleskOS_28_09_2023_16_38_07

On real computers you should select first option. However, in emulators is best graphic mode often too big for monitor, so you may want to select boot with special boot options, what select graphic mode 1024x768 in emulators.

After booting screen, you will see Main window. When you see Main window, BleskOS is fully booted and ready to be used. You do not need to wait, as in classic operating systems, where even if you see desktop, you need to wait for all processes to be started. From Main window you can go to programs by clicking on their button, or by appropriate key.

VirtualBox_BleskOS_12_10_2023_18_38_32

In all programs you can use these keyboard shortcuts:

  • ESC = Back to Main window
  • F1 = Open file
  • F2 = Save file
  • F3 = New file
  • F4 = Close file
  • F5/F6 = Select another file on left/right

When you want to switch from one program to another, you can either use mouse, or you can just press ESC and then press key of program.

In dialog windows you can press ENTER for selecting Yes, or ESC for selecting No. If you see window only with text, you can close it by ENTER, ESC or just clicking somewhere on screen.

BleskOS development state

Drivers

  • Graphic: VBE
  • Sound: AC97, Intel HD Audio
  • Inbuilt hardware: PS/2 keyboard, PS/2 mouse, PATA hard disk, PATAPI optical disk drive, AHCI hard disk, AHCI optical disk drive
  • Filesystems: FAT12/16/32, ext2 (read-only), ISO9660 (read-only), CDDA (read-only)
  • USB controllers: UHCI, OHCI, EHCI
  • USB devices: USB mouse, USB keyboard, USB mass storage device, USB hub
  • Ethernet cards: Realtek 8139/8169, Intel e1000(e), AMD PC-net
  • Network stack: IPv4, ARP, UDP, TCP, DHCP, DNS, HTTP

List of working hardware contain list of real hardware that was already tested and is working.

Programs

  • Document viewer
  • Text editor
  • Graphic editor
  • Media viewer
  • Internet browser
  • File Manager

Supported file formats

  • TXT and all UTF-8 encoded text files
  • PNG (read-only), GIF (read-only), QOI, BMP
  • WAV, CDDA
  • HTML
  • ODT, DOCX (read-only)

I like this project, can I help you?

You are welcome 🙂

  • Give us a star
  • Watch repository to be notified about updates
  • If you will find some bugs, report them in Issues
  • Try BleskOS on some real computer and let us know how it worked in Discussions We would greatly appreciate if you would also add content of System log (Main window>[F1] System board>[L] System log>[F2] Backup the log). It helps us to improve BleskOS. Thank you!

About

32-bit operating system written from scratch, with alternative user interface, designed for older computers with intention to provide system that will make them usable again

Resources

License

Stars

Watchers

Forks

Releases

No releases published