Greetings from KolibriOS developer and main designer, and thanks for the review! Hardware support is on the wiki. Some apps like video-player and DosBox are available only in full images suitable for USB / ISO / HDD.
I'm pretty sure KolibriOS was designed to be an experiment on how much functionality you can fit into a 3.5" floppy disk, hence why there's 3 of everything and more games than an old Nokia. Edit: As others have pointed out, this was a fork of said project (MenuetOS). How has YT taught me more about computers than any of my teachers did?
That's awesome! I don't know much about MenuetOS but considering that a 1.44mb OS with bloat (how?) was based on it then I'm sure that it was crazy well made :]
@@lollixd6580follow Ben Eater's 8-bit computer build, after that I would choose a popular architecture to write code for, ARM is getting a lot of attention these days but there's also a lot about x86 especially for 32-bit which is much more easier and less restrictive to write code for than 64-bit
9 месяцев назад+26
do you also need a tutorial for google and youtube?
Yep, but they're mostly old now or just stripped down Linux which is nothing special, 10 a penny. KolibriOS still works and is still developed. I've installed it on everything from a Pentium 3 to an 8th gen intel 6 core machine. Networking and even some USB wifi adaptors worked automatically and I could download more, larger software from their online library. You can even run software openGL engines (slow but it works). There are side-projects to get Linux graphics drivers working with it. -- Most KolibriOS contributors are not natives of the Anglosphere so a lot of the posts are foreign but you can check the live development boards and things, some of it is in English. ReactOS and Menuet / KolibriOS should have had a ton of money thrown at them 15+ years ago onward by everyone pi$$ed off with Microsoft. Linux got all the support. Sad.
@@FireJojoBoy the problem with those is potential security vulnerabilities and malaware. windows is proprietary and we don't know if such things exist on the OS
It is crazy. it looks like it has a bunch of bloatware in the form of 3 of everything, but it obviously doesn't, and is very compressed. It probobly is entirely crafted for super-compression in the form of using raw assembly to build itself. That had to have taken a while.
@@TheRenegade... But its not compression. There just isn't a bunch of unnecessary code from C/C++ libraries linked by the compiler. It really puts into perspective just how much CPU power and storage space we waste in order to make it easier for software developers. Luckily, the raw power of modern hardware affords us this luxury.
So, while we use the term compression to refer to the process of converting information to a different representation of it via some algorithm, like zipping, compression in this case would be to squeez as much information in the less amount of space possible (as that is the meaning of "to compress"), so by simply designing all of this in asm, squeezing all this features in a single floppy disk was achieved. Thus compression, or at least I think that is what the op meant :P
Back in around 1999, I made a single-floppy Linux OS for a client. He wanted a firewall that couldn't be permanently altered by an attacker. So the LILO boot loader, the Linux kernel, and an init script that set up firewall rules was put on a single 1.44MB floppy disk that was then write-protected. It did work, but I felt it was more a silly proof-of-concept than something all that useful. EDIT: But this one looks WAY cooler.
Good job, I made a pxe boot to remmina in 8 megs and it was a pain. Though it was core linux based and needed a gui even with the init to rdp client. It did work on quite a lot of old windows 95 PCs. Though we didn't put the project into action as I burned out and left not that long after. I'm sad I don't have those sources anymore.
@@ancapftw9113 lol, there was no bootable CD, no "live CD" until 1998 with Debian 2.0. More recently there's been Floppinux, but around 1999 of course the kernel was smaller and there were several single-floppy linux distros. Tinyroot Linux, Tom’s Root Boot or, “tomsrtb" is 2.1MB (remember there were 2.88MB 3.5 floppies, but I think special drives were needed for that), FREESCO can be whittled down to 1.4MB. Once you git rid of both window manager and X-windows entirely, linux can be rather small. The original Minix fit on a floppy, idk since 3.0 though.
@@bricktasticanimations4834also the system requirements are much larger (it expands the disk contents onto a ram disk) but it fits the dloppy when compressed
I remember QNX in the late 1990s. It was a "real time OS" planned for embedded devices, but the demo floppy had mouse use, browser, and a couple of games. Very cool.
QNX goes back to the early 80s actually, and it's still kickin'. Too bad it's proprietary, because it has its charms. Would be fun to fool around with on open hardware.
This! It had everything and with a frame buffer video driver that didn't require dedicated drivers and still got to a working GUI. I suspect you could have also done the same with Windows 3.1 at the time if you really cut down on the system...
For audio, try the Sound Blaster 16 soundcard. I took a quick look at the source code, and it includes support for SB16 and Intel HDA, so this soundcard should work.
Best "cheap"sound card ever made ...((i am realy crying about the fact that i have had 3 pc in my live with them bad ass mofo's (to play some dos games) and i now am using scarlett shizzle that is 120 times the price and half as good)anyway the architecture of old software is so much better hell i mean them processors got how much better? While that old software loads, how much faster?we as a species are doing something wrong other than being jell us all the time and thinking about hard core prawns all the time...
It used 720kB double density diskettes and was able to format it as 880kB, with different filesystems like pfs,ffs,afs, it was able to use even more - near 1MB. And it had a real preemptive multitasking.
@@devon12346 because if you can make it so that, that one game can put out 10+ extra frames. you could allow people to play at a higher quality rather than having to compromise on worse graphics. Plus, the assumption that everybody has a 4090 with the latest CPU and one terabyte of RAM is how we got City Skylines 2.
@@le9038 The issue is a balance between optimization and actually releasing a game. The base of the issue is the massive data we have to deal with. Just take a single 4k texture, which many games now pack inside them. You aren't storing raw 4k textures, just a single raw 4k screenshot of my desktop is 24MB, compressing it to a .png reduces the size by 10x to just 2.4MB and JPG is smaller yet at 1.2MB. Thats important because a GPU can't render off compressed files, by nature of how compression works. So it has to uncompress these images on the fly as it needs them. So now thats overhead to deal with that you just can't optimize. So you either have a game like Cities Skylines that is 60GB or 600GB. Another factor for visual optimization is visual effects. A GPU does what's it's told, nothing more and nothing less. So when you want a fast frame, you need to make sure it can complete all instructions required to fill the frame buffer fast enough to display at the required frame rate. Each instruction takes time to process. Say you want to display an image on a billboard. It's one rectangle overlaid onto another rectangular space in the visual field. So once the GPU gets the texture it needs in memory it needs to calculate scaling which is a simple function, vertical key, horizontal key, rotation, other distortions or transforms, then it needs to convert that distorted 3d pixel information into a non-distorted square grid pixel pattern so it can be put in the frame buffer. The most optimal equations for doing this are already in use. The problem is we are asking it to do this millions of times per frame. Everything takes time and you run into issues where waiting for the silicon gates to change states becomes an issue so you can add two numbers using the most basic instruction there is. Doing all this by hand in code would be faster still. But that would take an entire lifetime to hand write and optimize every machine instruction in assembler. Not to mention every new GPU or CPU that adds or changes a feature would require learning an entirely new assembler language set. So we decide that releasing the game is important and create a high level compiler that we can write the game in and when it's time to write the game code, we compile it to run on top of an OS running environment, it tries to pick the best choices but there are edge cases that would just be too complex to automate so the compiler instead picks the slower and more reliable approach. This OS environment is yet another interpreter of sorts as it has to translate between the game engine and the hardware drivers, having an AMD or Intel CPU shouldn't require a different installer, having an i7-9700k vs an i7 12700k shouldn't require a different compiled version of the game. So again, we make decisions that are slower but more stable. Then we run into issues where you have dozens to hundreds of programmers working on the game code, a method one person uses to optimize game code may be just as effective as another persons method, but the two methods cannot work together, so you just pick a happy medium that both people understand how to write, even if it's not as effective. The result is a heavy leverage on people having more powerful computers because the game has to release at all. And since we want near photorealistic games with 4k textures and accurate physics simulations, we have to compromise somewhere.
@alexander-yd3hz 100%. This is what happens when you don't have strict, powerful regulations with aggressive enforcement and painful punishment for noncompliance.
@@leylandlynxvlogif you know you know, if you don’t know you know that you know you don’t know. You’re so special and part of a secret society that “know”
I think its express purpose is to fit onto a 1.44 MB floppy. For the rest: it is a toy. It is impressive that it has networking, a file system, a web browser (although too primitive and prone to crashes), but it has no word processor and I doubt that it will concur with the philosophy of the OS. It could perhaps be tweaked into a system USB tool though. Perhaps it could also be used for some embedded application.
Yep. As soon as you said it was an extremely lightweight operating system, I knew what some of the risks would be: You need drivers. Another big reason Linux has gotten so huge is not just updates to the core system, but the fact that Linux holds tons and tons of relevant driver files. You could theoretically keep nearly everything else about the system the same but without good drivers, it's only going to be partially functional compared to any other modern OS.
I wouldn't be too sure about that. As long as it has drivers for the hardware you're using then it's more than ample. Consider that I've got a huge build of the kernel and it still only takes up 12mb. While that's beyond the size of a floppy, it includes drivers for hardware I don't even have. Imagine a stripped down kernel that only has drivers for the absolute most common hardware that people could have. Even a full install of Win98 back in the day could take less than 500mb if you deleted the bloatware from it. I'd love to see him install a network card and sound card and really test it out, because the last time I used Menuet it worked with all of my hardware, and Kollibri being a fork should mean the same.
Ironically, terrible hardware support is what keeps me from using Linux and I tried a dozen times in the last 20 years. At one point people suggested to use wine to run a freaking windows driver or something. My old eeePC has winXP. Why? No Linux (Ubuntu, debian idk what else I tried) supported the hardware. Some didn't like my screen, others had no audio support and or no support for the WiFi chip. Either way, it was a literal brick with any Linux. This is not hate, it just baffles me when people say something like "it has great driver support". Idk, maybe in the last 5 years something changed but I remember a time when literally nobody could use their own usb printer because there were no drivers😅
@@borstenpinsel That's the way it works sometimes. If you use weird hardware that none of the developers have, you're not going to get good drivers. I've been lucky with mine because I pretty much always use pre-builts and except for the Conexant soft-modem I had 25 years ago, everything worked out of the box, and Red Hat actually had drivers for it which I was able to use. Even my oddball printer that I've got now works, but boy was it a PITA to get working.
@@anon_y_mousse my kernel is configured for my hardware and also takes up 12MB, so specializing the driver load-out probably won't save much as such. I also see now that the size has increased markantly over time 5.19 - +250kiB -> 6.0 - +420kiB -> 6.3.0 - -8kiB -> 6.3.2 That is without any user configurable settings, except the compiler version, changing. That final decrease in size also coincided with GCC upgrading from 12.2 to 13.1.
@@dashboard-11 skin for a 'desktop environment' (DE), in this case its for 'XFCE', a window manager / de for linux. you can get themes that change the look and feel by downloading them and putting them in the right folders and enabling them in the settings
You get a like just for that Aptiva. My Grandpa gave me his Aptiva when he was done with it, but then my aunt sold it at a garage sale. Thankfully it only had old games on it.
man, something about that "this is not a drill" picture broke me. reminded me of how simple humor was back in the day. great vid man, might check this out on some old pc i got just lyin around
I tried that a few years ago on an IBM Thinkpad 600e with a 366MHz Pentium II on Windows XP (which does of course not make any sense to do on such a machine, because a real Dos based operating system could be installed). It worked great for earlier dos titles, but was definitely not up to the task for newer ones (like Elder Scrolls Daggerfall).
@@martingamper6435 I used to have that as a kid! Locked myself out of it when the CMOS battery died, though, since I had a supervisor password set. Tried to reset it the hard way some years back but ended up bricking it.
this reminds me of a system I tried out back in late 1999 (I forget the name), that was a whole GUI OS with all basic w95-type features on a 1.44Mb floppy - included a webserver as well as browser, I think it was a commercial project aimed at embedded systems before there was a word for that... made use of the fact it was a whole unified project so all functions in the code could be reused across all apps and OS features, no repetitions.
QNX is another real-time embedded OS that has a full feature GUI and network stack and sits on a 1.44mb floppy. They were purchased by Palm then Blackberry. A lot of automation uses this OS as well as Nasa.
No sound is the best startup sound. It shouldn't be needed! The "os" should be ready the same second you flip the on/off-switch, just like on a calculator, or any general appliances.
@@TacitMarmot27121ytby not using iPhone?😂 I have Windows/macOS and Linux installers on my phone, Also carrying my macOS bootable Image on my (Android) phone. Qemu works fine under Android, there are few apps for that, Even straight from Google
QNX done a unix based GUI demo on a floppy disk back in 1999 - when windows came on something like 38 floppy disks! They done it as a demo of ultra small real time operating systems for embedded systems.
@@fadate7292 To be fair - in 1999 the majority of people still had dial up networking! DSL broadband started to get more widespread from 2002 onwards, for instance, in 2002, there were only around 200,000 DSL subscribers in the UK. I was one of the early adopters with demon internet and I managed to get it before the product had been offically launched via their owner company Thus literally within a week of the equipment being installed in my local exchange
I remember trying this out back in the late 1990s, with the tagline, "Take the 1.44MB Surf Challenge!" - back when people still referred to "surfing" the Internet. 😆 I thought it was cool at the time to fit an OS on to a single floppy disk. In fact, I think I still have the disk somewhere in my collection...
I love vintage electronics especially vintage, audio equipment from the 90s to early 2000s my fav brand right now is Sony and yes before you ask I have a Walkman I have 3,there not cassette tho it’s a format release in 1992 called mini disc,it lasted until 2014 when support was ended so it had a long run the last one they made is the rh1 in 2006. Also mini disc has its own emoji on the iPhone 💽
I have several sony equipment as well. A minidisk player, a stereo system for my old iPod, headphones, a camera. And same as you I love vintage equipment.
In a world of constant memory / storage creep for every single feature release one of my new favorite video categories on RUclips has become "I optimize / they optimize / see this crazy optimization". Every programmer I know wants... no CRAVES to be so good at programming they do incredible feats such as this but there's always budget / time restraints to hold them back. This KolibriOS experiement is everything I wish I could create. Something straight and to the point + usable.
This is quite cool.. I’ve always been inspired as a kid I’d write small programs and applications with code a lot because you can save alot of storage space and have a program run really fast on slower systems. I remember back in high school teachers were very interested in my web browser I made that was only around 500 to 600 bites in size.
The numbered squares in Minesweeper tell you how many mines are touching those squares. It's not actually a guessing game, for the most part. "Start with the corners" is the kind of approach that makes me think this is probably novel information. Cheers.
Most of the info in this video is "start with the corners" level. I'm glad that kids are playing with old stuff, but lack of context is almost insulting.😢
Thank you :) Actually it's not as simple as that. We made it small, but being fast is a different problem. It was not fast loading webpages. But for us, that was ok
@@mikehibbett3301- With modern hardware, is it even worth coding in assembly anymore? A friend of mine is a programmer and said something like that, but I’m not sure he was right. He said the gains you make aren’t that important in the modern landscape
@@ElectronFieldPulse It depends on what you are coding for. I work on ultra low power senor systems, both on earth and in space. For those, the additional effort ( project cost) is worth it. For web based applications, no. It all depends on the target usecase
Idk why, but when the windows NT noise played I just smiled. It was one of the first OS's I had on my first computer, I was 14ish and it was all mine. We had a family pc but I managed to get my very own. Just reminds me of better times
Well, the goal of MenuetOS is to provide a programming environment, where you are not constrained by tons of accidental complexity, like garbage collector, complex graphics drivers, multi-user permission systems, etc. It gives you a similar experience as ZX Spectrum, Atari, Commodore 64 and Amiga gave, but on more modern hardware.
QNX did this back in the day. It included a full OS, automatically recognized hardware, had a file manager, notepad, web browser, web server, some small games and plenty of utilities. On a 1.44MB floppy.
MenuetOS hahaha that's funny I immediately saw the title and thought I wonder if this is related. Apparently it is. I believe I found out about the operating system from TechTV theScreensavers or call for help. Never quite could quite get it working right but it did run. Then there was an update and I could never get that running and then never got back to it. Well that's cool that it's expanded and been built upon. The idea at the time was quite crazy! A 1.4MB OS!
thank you for bringing both OSes to my attention. these are awesome projects. maybe I finally push my fear away of directly coding in assembly and just go for it. Both projects seem to have an emphasis on ease of programming within it, which to my mind is just perfect. simple and easy enough seems just perfect.
What an insanely neat project. I think those cpu eating 3d renders were part of the benchmark and gpu test tools inside of early windows, like win 95??. Somehow they seem familiar, the old man had many like it back then. The voodoo 3d benchmarks were fun to watch (I was just a kid)
4:21 the trick to Minesweeper is understanding the numbers, each number represents a hidden bomb right next to that number hidden under the boxes. If you see three 1's, lined up together, chances are its just 1 bomb right next to the middle number 1. If you see 3? chances are there are 3 bombs next to that number right next to it. the numbers calculate the bombs horizontally, vertically and diagonally.
I love things like kolibri (other example might be assembly version (first version) of game rollercoaster tycoon) because it shows how much can be done if we would take optimization to extreme and write code exactly for machine (instruction set) that we want to run it for. It launches almost instantaneusly to the graphical interface an it weights very very little. Of course it comes at a cost of portability (I would imagine that it wouldn't be easy task to port this OS into arm or RISC-V). But it shows how much power we are "wasting".
Very cool that some people still bother to learn and code in assembly! This is what I call real programming, making the best use of the hardware you have instead of just throwing more memory and faster processors at the problem. I remember in high school I had something called GeoWorks Ensemble, which had similar productivity software to what you would find on a Windows 3.1 machine, except it was written in assembly and could still run decently on a 286 with like 1 mb of RAM, I even used it to type my research paper for English class my senior year.
Jesus Christ, and I thought Puppy was small for a modern distro. (~250mb ISO about 5 years ago, about ~400mb for todays images) But this is genuinely insane. Props to the KolibriOS devs for doing the unthinkable
I watched this video through and never noticed the astolfo figurine in the corner right until the end. That means this video was verrrrry entertaining.
: ) WOW ! ! THANKS MUCH for sharing ! AMAZING, and written in ASSEMBLY ? ? KUDOS to the Devs for this GEM! ALL the BEST ! Wonder if I can load onto Ventoy to try ? :: )
Greetings from KolibriOS developer and main designer, and thanks for the review!
Hardware support is on the wiki. Some apps like video-player and DosBox are available only in full images suitable for USB / ISO / HDD.
Why wasn't he able to setup a soundblaster?
@@The14Some1 only ISA SB16 is supported, no other SB card. Unfortunately.
@@leency What's a good modern OS for a Compaq Deskpro 386S ? Currently it has Win 3.1 and DOS 6.22
@@jasonrubik Modern OS for x386? :DDD
Emmmmmmmm Win 3.1 is the best I suppose.
@leency, amazing achievement!
I'm pretty sure KolibriOS was designed to be an experiment on how much functionality you can fit into a 3.5" floppy disk, hence why there's 3 of everything and more games than an old Nokia.
Edit: As others have pointed out, this was a fork of said project (MenuetOS).
How has YT taught me more about computers than any of my teachers did?
Old nokias only have snake? Contemporary ericsons had more games.
@@benholroyd5221Congratulations, I certify you immune to jokes.
@@leblueawoo I'm not immune, just extremely pedantic and argumentative.
@@benholroyd5221Very well. Have a good day.
@@benholroyd5221 In layman terms: Same thing
I'm one of the designers of MenuetOS (I wrote the TCP/IP stack in assembler for it years ago.) Feel free to reach out for more info.
That's awesome! I don't know much about MenuetOS but considering that a 1.44mb OS with bloat (how?) was based on it then I'm sure that it was crazy well made :]
Hey, could you maybe tell me how start assembler programming?
Do you have twitter? Can I talk to you on Github? Gmail?
@@lollixd6580follow Ben Eater's 8-bit computer build, after that I would choose a popular architecture to write code for, ARM is getting a lot of attention these days but there's also a lot about x86 especially for 32-bit which is much more easier and less restrictive to write code for than 64-bit
do you also need a tutorial for google and youtube?
the Astolfo figure lol
Astolfo figure on the desk. Bro is a real IT specialist
well, i have a super sonico instead, i think what astolfo means is a bit more darker :v
Bro is a re- ACK!
@@crazyskill638complete random question, why do so many people do this? what does it signify? i’m genuinely curious.
@@defaultdan7923 femboy
nice waifu ....... he's a man of culture.
>interested in random OS
>owns old hardware
>linux PFP
>astolfo statue next to screen
yeah makes sense
Wdym? What are you suggesting
😼
meow
Vague kids everywhere 🤦♂️
Old otaku?
Would be good to see a series on all the extremely lightweight OSs out there
Yep, but they're mostly old now or just stripped down Linux which is nothing special, 10 a penny. KolibriOS still works and is still developed. I've installed it on everything from a Pentium 3 to an 8th gen intel 6 core machine. Networking and even some USB wifi adaptors worked automatically and I could download more, larger software from their online library. You can even run software openGL engines (slow but it works). There are side-projects to get Linux graphics drivers working with it.
--
Most KolibriOS contributors are not natives of the Anglosphere so a lot of the posts are foreign but you can check the live development boards and things, some of it is in English. ReactOS and Menuet / KolibriOS should have had a ton of money thrown at them 15+ years ago onward by everyone pi$$ed off with Microsoft. Linux got all the support. Sad.
Agree
Wish we could have a mainstream one, like we used to.
@@TheSimoc true, there are some modifications of like windows and stuff that remove bloat but I'm too much of a whimp to try unsupported versions
@@FireJojoBoy the problem with those is potential security vulnerabilities and malaware. windows is proprietary and we don't know if such things exist on the OS
It is crazy. it looks like it has a bunch of bloatware in the form of 3 of everything, but it obviously doesn't, and is very compressed. It probobly is entirely crafted for super-compression in the form of using raw assembly to build itself. That had to have taken a while.
Compression has nothing to do with it. Assembly coding is extremely space-efficient.
@@jimbotron70That's what they meant by compression
@@TheRenegade... But its not compression. There just isn't a bunch of unnecessary code from C/C++ libraries linked by the compiler. It really puts into perspective just how much CPU power and storage space we waste in order to make it easier for software developers. Luckily, the raw power of modern hardware affords us this luxury.
@@TheRenegade... No, you miss the point.
So, while we use the term compression to refer to the process of converting information to a different representation of it via some algorithm, like zipping, compression in this case would be to squeez as much information in the less amount of space possible (as that is the meaning of "to compress"), so by simply designing all of this in asm, squeezing all this features in a single floppy disk was achieved. Thus compression, or at least I think that is what the op meant :P
Back in around 1999, I made a single-floppy Linux OS for a client. He wanted a firewall that couldn't be permanently altered by an attacker. So the LILO boot loader, the Linux kernel, and an init script that set up firewall rules was put on a single 1.44MB floppy disk that was then write-protected. It did work, but I felt it was more a silly proof-of-concept than something all that useful.
EDIT: But this one looks WAY cooler.
Good job, I made a pxe boot to remmina in 8 megs and it was a pain.
Though it was core linux based and needed a gui even with the init to rdp client.
It did work on quite a lot of old windows 95 PCs. Though we didn't put the project into action as I burned out and left not that long after.
I'm sad I don't have those sources anymore.
You live booted from a 3.5?
@@ancapftw9113 even kolibriOS is live boot, as it doesnt install itself in the hard drive, so yeah probably they live booted from a 3.5
@@ancapftw9113 lol, there was no bootable CD, no "live CD" until 1998 with Debian 2.0. More recently there's been Floppinux, but around 1999 of course the kernel was smaller and there were several single-floppy linux distros. Tinyroot Linux, Tom’s Root Boot or, “tomsrtb" is 2.1MB (remember there were 2.88MB 3.5 floppies, but I think special drives were needed for that), FREESCO can be whittled down to 1.4MB. Once you git rid of both window manager and X-windows entirely, linux can be rather small. The original Minix fit on a floppy, idk since 3.0 though.
The Linux kernel alone is a bloated 100MB+ these days, lol.
KolibriOS can run on extremely low end machine and perform 3d rendering. So cool!!! This is hidden gem OS.
no mouse or keyboard it's more likely it froze or locked up🤣🤣🤣
@@SaraMorgan-ym6ueyou have not watched past 4 minutes
Feel free to mention that KolibriOS is a distro of Menuet OS, not an original design.
This looks great for an OS that only requires 1.44 MB. I'm definitely trying it myself.
It doesn't require 1.44mb, it's just the size of the floppy disk you can save the OS on...
@@Alfred-Neuman Yes I know. I just worded it slightly wrong because I was tired.
@@bricktasticanimations4834also the system requirements are much larger (it expands the disk contents onto a ram disk) but it fits the dloppy when compressed
@@andrejszasz2816 Yes, I'm sure.
I remember QNX in the late 1990s. It was a "real time OS" planned for embedded devices, but the demo floppy had mouse use, browser, and a couple of games. Very cool.
And now it’s owned by BlackBerry and runs on cars
That’s pretty awesome. Wonder if I could find one
QNX goes back to the early 80s actually, and it's still kickin'. Too bad it's proprietary, because it has its charms. Would be fun to fool around with on open hardware.
This! It had everything and with a frame buffer video driver that didn't require dedicated drivers and still got to a working GUI.
I suspect you could have also done the same with Windows 3.1 at the time if you really cut down on the system...
RTOS’ like QNX are a thing. Why did you put it in quotes? Lol
For audio, try the Sound Blaster 16 soundcard.
I took a quick look at the source code, and it includes support for SB16 and Intel HDA, so this soundcard should work.
This comment smacked me upside the head with nostalgia hard enough to miss my windows 95 demo disk
Best "cheap"sound card ever made ...((i am realy crying about the fact that i have had 3 pc in my live with them bad ass mofo's (to play some dos games) and i now am using scarlett shizzle that is 120 times the price and half as good)anyway the architecture of old software is so much better hell i mean them processors got how much better? While that old software loads, how much faster?we as a species are doing something wrong other than being jell us all the time and thinking about hard core prawns all the time...
@@teckz0r everything is a skinned chrome browser now. Easy and cheap to develop and deploy but extremely resource hungry.
The eventual update to 1.45MBs is going to fracture the community.
just ditch the file system and use the entire 2MiB on the raw disk as a block device.
The Amiga OS, Workbench, used half of 1.44 MBs and it was multitasking...
It used 720kB double density diskettes and was able to format it as 880kB, with different filesystems like pfs,ffs,afs, it was able to use even more - near 1MB. And it had a real preemptive multitasking.
Don't forget about the 512KB ROM... It had half of the OS on it.
That is freaking impressive. Shows us how unoptimized modern software is.
@alexander-yd3hz optimization is extra money to develop and why do it if everyone has like 8gb+ and 500gb+ hard drives nowadays
Unoptimized or optimized to work on various combinations of hardware combos, and having to support legacy software
@@devon12346 because if you can make it so that, that one game can put out 10+ extra frames. you could allow people to play at a higher quality rather than having to compromise on worse graphics.
Plus, the assumption that everybody has a 4090 with the latest CPU and one terabyte of RAM is how we got City Skylines 2.
@@le9038 The issue is a balance between optimization and actually releasing a game. The base of the issue is the massive data we have to deal with. Just take a single 4k texture, which many games now pack inside them. You aren't storing raw 4k textures, just a single raw 4k screenshot of my desktop is 24MB, compressing it to a .png reduces the size by 10x to just 2.4MB and JPG is smaller yet at 1.2MB. Thats important because a GPU can't render off compressed files, by nature of how compression works. So it has to uncompress these images on the fly as it needs them. So now thats overhead to deal with that you just can't optimize. So you either have a game like Cities Skylines that is 60GB or 600GB.
Another factor for visual optimization is visual effects. A GPU does what's it's told, nothing more and nothing less. So when you want a fast frame, you need to make sure it can complete all instructions required to fill the frame buffer fast enough to display at the required frame rate. Each instruction takes time to process. Say you want to display an image on a billboard. It's one rectangle overlaid onto another rectangular space in the visual field. So once the GPU gets the texture it needs in memory it needs to calculate scaling which is a simple function, vertical key, horizontal key, rotation, other distortions or transforms, then it needs to convert that distorted 3d pixel information into a non-distorted square grid pixel pattern so it can be put in the frame buffer. The most optimal equations for doing this are already in use. The problem is we are asking it to do this millions of times per frame. Everything takes time and you run into issues where waiting for the silicon gates to change states becomes an issue so you can add two numbers using the most basic instruction there is.
Doing all this by hand in code would be faster still. But that would take an entire lifetime to hand write and optimize every machine instruction in assembler. Not to mention every new GPU or CPU that adds or changes a feature would require learning an entirely new assembler language set. So we decide that releasing the game is important and create a high level compiler that we can write the game in and when it's time to write the game code, we compile it to run on top of an OS running environment, it tries to pick the best choices but there are edge cases that would just be too complex to automate so the compiler instead picks the slower and more reliable approach. This OS environment is yet another interpreter of sorts as it has to translate between the game engine and the hardware drivers, having an AMD or Intel CPU shouldn't require a different installer, having an i7-9700k vs an i7 12700k shouldn't require a different compiled version of the game. So again, we make decisions that are slower but more stable.
Then we run into issues where you have dozens to hundreds of programmers working on the game code, a method one person uses to optimize game code may be just as effective as another persons method, but the two methods cannot work together, so you just pick a happy medium that both people understand how to write, even if it's not as effective.
The result is a heavy leverage on people having more powerful computers because the game has to release at all. And since we want near photorealistic games with 4k textures and accurate physics simulations, we have to compromise somewhere.
@alexander-yd3hz 100%. This is what happens when you don't have strict, powerful regulations with aggressive enforcement and painful punishment for noncompliance.
2:28 It's amazing, I didn't expect to see a graphical interface in such a compact Operating System
Well we had GeOS on the Commodore 64, a GUI. I also had a mouse to use it with ;)
Amiga workbench 1.3 fits on a single disk too
most people be using discord in 2024
mate you're using discord in 1994
ONline! If you know you know.
what os is he using ?
@@leylandlynxvlog
“People be using” I bet you’re actually a rich kid from the suburbs
@@attribute-4677exactly, it’s a sickness
@@leylandlynxvlogif you know you know, if you don’t know you know that you know you don’t know. You’re so special and part of a secret society that “know”
1:26 ASTOLFOOOOO!!!!🤯🤯🤯🤯
Smash
the windows nt 4.0 startup sound!!!
and SMASH
I think its express purpose is to fit onto a 1.44 MB floppy. For the rest: it is a toy. It is impressive that it has networking, a file system, a web browser (although too primitive and prone to crashes), but it has no word processor and I doubt that it will concur with the philosophy of the OS. It could perhaps be tweaked into a system USB tool though. Perhaps it could also be used for some embedded application.
Yep. As soon as you said it was an extremely lightweight operating system, I knew what some of the risks would be:
You need drivers. Another big reason Linux has gotten so huge is not just updates to the core system, but the fact that Linux holds tons and tons of relevant driver files.
You could theoretically keep nearly everything else about the system the same but without good drivers, it's only going to be partially functional compared to any other modern OS.
I wouldn't be too sure about that. As long as it has drivers for the hardware you're using then it's more than ample. Consider that I've got a huge build of the kernel and it still only takes up 12mb. While that's beyond the size of a floppy, it includes drivers for hardware I don't even have. Imagine a stripped down kernel that only has drivers for the absolute most common hardware that people could have. Even a full install of Win98 back in the day could take less than 500mb if you deleted the bloatware from it. I'd love to see him install a network card and sound card and really test it out, because the last time I used Menuet it worked with all of my hardware, and Kollibri being a fork should mean the same.
Ironically, terrible hardware support is what keeps me from using Linux and I tried a dozen times in the last 20 years. At one point people suggested to use wine to run a freaking windows driver or something. My old eeePC has winXP. Why? No Linux (Ubuntu, debian idk what else I tried) supported the hardware. Some didn't like my screen, others had no audio support and or no support for the WiFi chip. Either way, it was a literal brick with any Linux. This is not hate, it just baffles me when people say something like "it has great driver support". Idk, maybe in the last 5 years something changed but I remember a time when literally nobody could use their own usb printer because there were no drivers😅
@@borstenpinsel That's the way it works sometimes. If you use weird hardware that none of the developers have, you're not going to get good drivers. I've been lucky with mine because I pretty much always use pre-builts and except for the Conexant soft-modem I had 25 years ago, everything worked out of the box, and Red Hat actually had drivers for it which I was able to use. Even my oddball printer that I've got now works, but boy was it a PITA to get working.
@@anon_y_mousse my kernel is configured for my hardware and also takes up 12MB, so specializing the driver load-out probably won't save much as such.
I also see now that the size has increased markantly over time 5.19 - +250kiB -> 6.0 - +420kiB -> 6.3.0 - -8kiB -> 6.3.2
That is without any user configurable settings, except the compiler version, changing. That final decrease in size also coincided with GCC upgrading from 12.2 to 13.1.
@borstenpinsel I think it has improved a lot in recent years, 5 years or so.
For those wondering, his DE skin on his main PC at the beginning of the video is Platinum9 for XFCE
pretty sure the DE in the beginning is KDE Plasma 5 tho, looking at the notifications at the top right and the systray
thanks i was wondering about this
love u
What's a DE skin?
@@dashboard-11 skin for a 'desktop environment' (DE), in this case its for 'XFCE', a window manager / de for linux. you can get themes that change the look and feel by downloading them and putting them in the right folders and enabling them in the settings
You get a like just for that Aptiva. My Grandpa gave me his Aptiva when he was done with it, but then my aunt sold it at a garage sale. Thankfully it only had old games on it.
the fact that is has so much crap on it and it's 1.44 megs in size is just amazing when you think about it🤣🤣🤣
Stumbled into it in around 2007, and it was very impressive even then, asm coders are into some magic.
man, something about that "this is not a drill" picture broke me. reminded me of how simple humor was back in the day. great vid man, might check this out on some old pc i got just lyin around
DOSBOX! Now you can play DOS games on your Pentium II!
😂
I tried that a few years ago on an IBM Thinkpad 600e with a 366MHz Pentium II on Windows XP (which does of course not make any sense to do on such a machine, because a real Dos based operating system could be installed). It worked great for earlier dos titles, but was definitely not up to the task for newer ones (like Elder Scrolls Daggerfall).
@@martingamper6435 I used to have that as a kid! Locked myself out of it when the CMOS battery died, though, since I had a supervisor password set. Tried to reset it the hard way some years back but ended up bricking it.
@martingamper6435 Try it now on modern hardware.
win 95 and 98 already have MSDOS
this reminds me of a system I tried out back in late 1999 (I forget the name), that was a whole GUI OS with all basic w95-type features on a 1.44Mb floppy - included a webserver as well as browser, I think it was a commercial project aimed at embedded systems before there was a word for that... made use of the fact it was a whole unified project so all functions in the code could be reused across all apps and OS features, no repetitions.
Maybe you're thinking of GEOS (I think it changed ownership and is now called Breadbox).
You confused me, because GEOS is for Commodore. What you’re talking about is PC/GEOS. Luckily there wiki to factcheck :)
It's probably a demo of the QNX operating system, as other comments have mentioned. Try searching for "QNX 1.44MB" for more information about it.
Sounds like QNX.
BeOS? I'm probably wrong
This channel is such a gem dude, why does this have so few views? Also, can we get a KDE plasma config guide? Love the vintage mac aesthetic
Amen
Yes, we need to advertise this more
You are the guy who randomly have a conversation about operating systems in that Microsoft survey.
how did u remember that lmao
ok but like why is your room such a vibe, the lighting, the computers, WINDOWS NT 4.0, the statues, and everything else. keep making content ❤❤❤
QNX is another real-time embedded OS that has a full feature GUI and network stack and sits on a 1.44mb floppy. They were purchased by Palm then Blackberry. A lot of automation uses this OS as well as Nasa.
NT4 has the best startup sound.
Amen
I still have win 95 startup and shutdown sounds on my w10 pc :D :D :D
@@dim0n1 I had NT startup on Windows 11 till an update removed it. Time to do it again but with the shutdown sound too this time.
No sound is the best startup sound. It shouldn't be needed!
The "os" should be ready the same second you flip the on/off-switch,
just like on a calculator, or any general appliances.
Ubuntu 8.10 was even better. Those drums man.
I trust this guy about computers because he's an Astolfo enjoyer.
Oh, that's the figurine! I should really get into Fate one of these days.
everyone knows you need soft, small, feminine hands to work on computers
@@ukemi- why would you say that...
@@mirai5268👈 do we tell him?
@@mirai5268it's facts
Thank you for leaving in the NT startup sound. that shit is ORGASMIC
The astolfo at 1:58 . what a man of culture
bro is a femboy >:3 ^^
If you are into this sort of thing there is also a 1.44mb QNX demo disk from the late 90s
I remember this - it was touted as the next Amiga OS or something. Not sure how that would have worked with the endianness.
I'm definitely running this in QEMU on my phone. I'm going to be productive as hell.
how tf do you have qemu on a phone
@@TacitMarmot27121yt Limbo is based on QEMU. I've run up to Windows 98 on it.
@@TacitMarmot27121ytby not using iPhone?😂
I have Windows/macOS and Linux installers on my phone,
Also carrying my macOS bootable Image on my (Android) phone.
Qemu works fine under Android, there are few apps for that, Even straight from Google
@@TacitMarmot27121yt If he has a Pinephone it's 100% possible, and otherwise i don't know exactly but there are package managers for Android and stuff
@@TacitMarmot27121yt Termux, termux is the answer of everything
The astolfo figurine makes this video 1000x better
4:09 BRO I have an ENTIRE BOX of network cards, what do you need?
QNX done a unix based GUI demo on a floppy disk back in 1999 - when windows came on something like 38 floppy disks! They done it as a demo of ultra small real time operating systems for embedded systems.
@@fadate7292 To be fair - in 1999 the majority of people still had dial up networking! DSL broadband started to get more widespread from 2002 onwards, for instance, in 2002, there were only around 200,000 DSL subscribers in the UK. I was one of the early adopters with demon internet and I managed to get it before the product had been offically launched via their owner company Thus literally within a week of the equipment being installed in my local exchange
I was there... trying QNX on a floppy. A million years away.
I remember trying this out back in the late 1990s, with the tagline, "Take the 1.44MB Surf Challenge!" - back when people still referred to "surfing" the Internet. 😆 I thought it was cool at the time to fit an OS on to a single floppy disk. In fact, I think I still have the disk somewhere in my collection...
I really liked QNX. I still have the install archived.
I love vintage electronics especially vintage, audio equipment from the 90s to early 2000s my fav brand right now is Sony and yes before you ask I have a Walkman I have 3,there not cassette tho it’s a format release in 1992 called mini disc,it lasted until 2014 when support was ended so it had a long run the last one they made is the rh1 in 2006. Also mini disc has its own emoji on the iPhone 💽
I have several sony equipment as well. A minidisk player, a stereo system for my old iPod, headphones, a camera. And same as you I love vintage equipment.
Having two Thinkpads, one from the elder era with ibm(2003), and one newer from Lenovo (2008)
In a world of constant memory / storage creep for every single feature release one of my new favorite video categories on RUclips has become "I optimize / they optimize / see this crazy optimization". Every programmer I know wants... no CRAVES to be so good at programming they do incredible feats such as this but there's always budget / time restraints to hold them back. This KolibriOS experiement is everything I wish I could create. Something straight and to the point + usable.
_Pausing for the NT bootup sound_
Normal people: wtf?
IT people: _brief moment of happiness_
quite fun to watch
This is quite cool.. I’ve always been inspired as a kid I’d write small programs and applications with code a lot because you can save alot of storage space and have a program run really fast on slower systems. I remember back in high school teachers were very interested in my web browser I made that was only around 500 to 600 bites in size.
a webbrowser with 600 bytes?
@@leandroschmidt1292 only took up like 600 bits of storage
@@leandroschmidt1292he wrote bits. That's only around 70 to 80
bytes.
curl url
system.out.print 😂😂
@@leandroschmidt1292no, he wrote _bites_ which means the browser bites everyone who's trying to get closer to it, like a dog or something
I appreciate the pause in speech to admire the WinNT startup sound ❤
The numbered squares in Minesweeper tell you how many mines are touching those squares. It's not actually a guessing game, for the most part. "Start with the corners" is the kind of approach that makes me think this is probably novel information. Cheers.
Most of the info in this video is "start with the corners" level. I'm glad that kids are playing with old stuff, but lack of context is almost insulting.😢
Written in assembly, of course it will be optimised. No wasted instruction cycles
Thank you :) Actually it's not as simple as that. We made it small, but being fast is a different problem. It was not fast loading webpages. But for us, that was ok
@@mikehibbett3301- With modern hardware, is it even worth coding in assembly anymore? A friend of mine is a programmer and said something like that, but I’m not sure he was right. He said the gains you make aren’t that important in the modern landscape
@@ElectronFieldPulse It depends on what you are coding for. I work on ultra low power senor systems, both on earth and in space. For those, the additional effort ( project cost) is worth it. For web based applications, no. It all depends on the target usecase
reminds me on the good old Amiga Workbench 3.2, lots of things you could do from a minimal OS
Idk why, but when the windows NT noise played I just smiled.
It was one of the first OS's I had on my first computer, I was 14ish and it was all mine. We had a family pc but I managed to get my very own.
Just reminds me of better times
There's something surreal about watching a nerdy computer topic, and being hearing the occasional "fUCK", surpringsingly funny haha
Given the reliability of computers in the 90s I can assure you their use was usually accompanied by the word "Fuck"
lol this is an interesting find. love seeing limited electronic stuff being pushed to their absolute extremes XD
Well, the goal of MenuetOS is to provide a programming environment, where you are not constrained by tons of accidental complexity, like garbage collector, complex graphics drivers, multi-user permission systems, etc. It gives you a similar experience as ZX Spectrum, Atari, Commodore 64 and Amiga gave, but on more modern hardware.
QNX did this back in the day. It included a full OS, automatically recognized hardware, had a file manager, notepad, web browser, web server, some small games and plenty of utilities. On a 1.44MB floppy.
MenuetOS hahaha that's funny I immediately saw the title and thought I wonder if this is related. Apparently it is. I believe I found out about the operating system from TechTV theScreensavers or call for help. Never quite could quite get it working right but it did run. Then there was an update and I could never get that running and then never got back to it. Well that's cool that it's expanded and been built upon. The idea at the time was quite crazy! A 1.4MB OS!
That’s so impressive. This os might come in handy sometime
Now this is what I want to watch on RUclips
thank you for bringing both OSes to my attention. these are awesome projects. maybe I finally push my fear away of directly coding in assembly and just go for it. Both projects seem to have an emphasis on ease of programming within it, which to my mind is just perfect. simple and easy enough seems just perfect.
please don't stop, love your channel and videos
5:17 I was thinking "oh cool, old computers!" Then I looked to the right.... WEEEEEEEEEEEEEB! 🤣🤣🤣🤣🤣🤣
What an insanely neat project. I think those cpu eating 3d renders were part of the benchmark and gpu test tools inside of early windows, like win 95??. Somehow they seem familiar, the old man had many like it back then. The voodoo 3d benchmarks were fun to watch (I was just a kid)
2:40 old computer and astolfo is an interesting dynamic
I have this type of computer in my room but I was not using it but after watching this video I am going to revive it by installing this OS. Thank you
Everyone talks about the PC but no one talks about the figure of Astolfo
i noticed it
you are going places im so proud of you
This OS is literally smaller than some of the pictures my professional grade camera spits out, this is amazing
of course astolfo is there
Fun thing is modern compilers can make code with size and speed comparable to manual assembly. It's libraries which add bloat.
love the video style. impressive how much they can do with so little
Love the Astolfo figure on the desk!
Can it run Doom?
He he he I hope so
Also someone make a vid a bout this
i tried it and yeah i found doom already there
But, can it run crysis???????
@@bennubedroom idk i didnt check if it runs . exe or other kind of application
bros internet is so slow, that it takes multiple seconds to download 1.4 mb
*back then computers so differently working.*
4:21 the trick to Minesweeper is understanding the numbers, each number represents a hidden bomb right next to that number hidden under the boxes. If you see three 1's, lined up together, chances are its just 1 bomb right next to the middle number 1. If you see 3? chances are there are 3 bombs next to that number right next to it. the numbers calculate the bombs horizontally, vertically and diagonally.
eyy Lithuanian made in : 0:57
probably need to install codecs to play video
the codec package alone could be larger than the OS
I love things like kolibri (other example might be assembly version (first version) of game rollercoaster tycoon) because it shows how much can be done if we would take optimization to extreme and write code exactly for machine (instruction set) that we want to run it for. It launches almost instantaneusly to the graphical interface an it weights very very little.
Of course it comes at a cost of portability (I would imagine that it wouldn't be easy task to port this OS into arm or RISC-V). But it shows how much power we are "wasting".
Very cool that some people still bother to learn and code in assembly! This is what I call real programming, making the best use of the hardware you have instead of just throwing more memory and faster processors at the problem. I remember in high school I had something called GeoWorks Ensemble, which had similar productivity software to what you would find on a Windows 3.1 machine, except it was written in assembly and could still run decently on a 286 with like 1 mb of RAM, I even used it to type my research paper for English class my senior year.
amazing too see what can be stored in 1.44mb go team
Side note but could I ask where you got that classic Mac OS theme from? Looks amazing!
i too am curious !
That's the xfce theme
This is so cool! But my biggest question is how’d you make your computer look like MacOS 9? I love that
Looks like a specific OS.
i think its Platinum9 GTK theme for linux
Thanks for letting me know! @@neveknobes
Why is there an astolfo figure on your desk?
Edit: The ":3" On tinypad answered the question. Thank you :3
Jesus Christ, and I thought Puppy was small for a modern distro. (~250mb ISO about 5 years ago, about ~400mb for todays images)
But this is genuinely insane. Props to the KolibriOS devs for doing the unthinkable
I've given up on Puppy and am now using Porteus 5.01 LXQt. There's too much extra software in Puppy that I don't need. It is problematic to remove it.
That third file manager at 5:00 is definitely a reproduction of Norton Commander for DOS.
very minor detail but im glad someone acknowledges VECTOR GRAPHIC's music, great choice for bgm especially for this type of video!
How did you theme your original OS so well to look like OS Classic?
Platinum 9 theme for xfce
I don’t know how did you net notice this but on 7:48 your system disk usage shows 37MB free of 1.4MB😂
But can it run Doom?
It has dosbox so
I watched this video through and never noticed the astolfo figurine in the corner right until the end. That means this video was verrrrry entertaining.
I really appreciate you letting the song play when NT booted. I miss this era of computing more than I can really articulate.
how did u make your desktop look like that? 0:01
Linux
A theme for XFCE on linux called Platinum9
What OS was at the start, and also how do you find these call operating systems? Would love to try some out!
Linux
@@FluffyPuppyKasey Any particular distro?
You're not old enough to remember that there's a difference between the PS2 mouse and other mice. The drivers were different back in the day.
Most people aren't old enough to remember AT keyboards, either.
Amazing how internet never works on these "floppy os" type videos
: ) WOW ! ! THANKS MUCH for sharing ! AMAZING, and written in ASSEMBLY ? ? KUDOS to the Devs for this GEM! ALL the BEST ! Wonder if I can load onto Ventoy to try ? :: )
All those boxes and you didnt put it online............ FAIL!
Pretty much
"we are using 100% cpu usage rendering a fucking cube"
that is by far the FUNNIEST sentence i have ever heard.
what were you listening to at 3:03 ?
Sounded like BGM from Buckshot roulette
ccol vid. I appreciate the format and straight forwardness instead of trying to be like everyone else on RUclips
THE SOUNDBLASTER LIVE !!! LETS GO! i still have one at home and will keep using it until it dies on me