An Operating System in 1.44 MBs

  Рет қаралды 73,094

WindowsG Electronics

WindowsG Electronics

Күн бұрын

An Operating System in 1.44 MBsIn a world where a stock installation of Windows is 27 GBs, and Linux isn't much better at 500 MBs.. surely that space must be used for something.Is it even possible for a system to boot into a usable OS with less than 1.44 MBs of software?
Even Windows 3.11 requires 6.5 MBs and a hard disk.But.. apparently KolibriOS can... it even has a GUI, and full suite of applications.. lets have a closer look shall we?
Official Discord Server: / discord
Thanks For Viewing!~ ❤
KolibriOS: kolibrios.org/en/
00:00 - Intro
00:56 - Bump
01:05 - Introduction
02:50 - KolibriOS Installation
03:27 - First Boot
04:46 - Browsing in style :3
06:48 - The rest of the apps
13:56 - USB experience
15:16 - apps cont.
20:02 - The Sound Escapade
22:43 - Gaming in 1.44 MBs
28:44 - boykisser :333
30:45 - Outro
32:20 - Bump
/////////////////////////////////
WindowsG Extras: Episode 8
by SnoopiTek 2023
www.snoopieworld.net

Пікірлер: 559
@WyvernDotRed
@WyvernDotRed 10 ай бұрын
28:40 if Tetris Effect Connected ranked mode counts, your fear just became reality. This Tetris version does not have a game standard board size and it seems to lock pieces like Classic Tetris, so in that way it might take some adjusting at first. Unless it has issues with reading inputs, at that speed that amount of misdrops is inexcusable though and I will judge you for it for eternity, as you feared. Also extremely poor piece placement, though that can be a strategy to score quicker higher up the board, with such a glacial dropspeed.
@WindowsG
@WindowsG 10 ай бұрын
aaaa ;-;
@BillAnt
@BillAnt 10 ай бұрын
No wonder KolibriOS is so fast and small, it's written completely in x86 assembly code.
@_lun4r_
@_lun4r_ 9 ай бұрын
unpin comment lmao
@average-neco-arc-enjoyer
@average-neco-arc-enjoyer 9 ай бұрын
I will add some things as a tetrio player: it seemingly doesn't use the usual seven bag randomization which is odd; it seems to lack a hold piece feature; & the colours of the tetrminos are random which is cursed.
@WyvernDotRed
@WyvernDotRed 9 ай бұрын
@@average-neco-arc-enjoyer only the random tetromino colours are off to me, the rest is normal in classic Tetris rules, which these clones often use. Ofc. there's way more depth to the modern rules, with super-rotation, lock delay and hold. But this is more a fun add-on to a 1,44MB OS, so the simpler implementation makes sense.
@anta40
@anta40 9 ай бұрын
It's written 100% in assembly... which means porting to another CPU architecture will be... not easy.
@lukealadeen7836
@lukealadeen7836 6 ай бұрын
Why would you want to port it?
@letusplay2296
@letusplay2296 6 ай бұрын
​@@lukealadeen7836because ARM64 and RISC-V would be nice
@verykittypretty
@verykittypretty 6 ай бұрын
isn't this written in fasm tho ? i feel like it wouldnt be impossible to port to arm
@torphedo6286
@torphedo6286 5 ай бұрын
That explains everything actually. All my assembly projects were super unstable, probably helps to know what you're doing though 😂
@DanyloSyrotynskyy
@DanyloSyrotynskyy 5 ай бұрын
Chatgpt from 2040 can do it easy!
@photoniccannon2117
@photoniccannon2117 10 ай бұрын
I can't stop laughing about the boiling hard drive. Very creative work on your videos my friend.
@BillAnt
@BillAnt 10 ай бұрын
The thumbnail "It's so small!" is probably not what you wanna hear in bed from a partner. ha-ha
@CyroTheSpider
@CyroTheSpider 10 ай бұрын
JFC I died from laughter when I saw that. Not into the whole catboy thing, but hey, good content is good content.
@Kennephone
@Kennephone 10 ай бұрын
This OS goes to show how bloated operating systems have gotten in the past 20 years, and especially since windows vista. Of course, there's not much you can do with this cause of the custom kernal, but still.
@redwillrise
@redwillrise 9 ай бұрын
It's not just the operating systems in themselves, but also the amount of different drivers, driver stacks, and the layers of abstraction required to support 238979823498235234 different hardware combinations really add up. There's a severe lack of standardization and unification in computing. That, and of course the calculation under capitalism is that developer time is more expensive that computing resources, so there is mostly little incentive to be efficient.
@Luredreier
@Luredreier 9 ай бұрын
Well, this OS is literally assembly language if I don't remember wrong. Cuts down the amount of instructions to the *absolute* minimum required, but it's somewhat difficult to be productive when programming for something like that... I believe that you can run it in a VM though, so there's that...
@redtex
@redtex 9 ай бұрын
Win 11 со всеми обновлениями может весить 50 ГБ. Это просто дичь какая-то.
@TheZazatv
@TheZazatv 9 ай бұрын
@@redtex но линукс все еще может быть очень худым (разные дистро конечно могут и дофига занимать)
@omarassadi2455
@omarassadi2455 7 ай бұрын
​@@Luredreier It is, yeah - 32-bit x86 FASM, IIRC. I haven't written enough assembly, let alone ancient i386-era assembly, to have a strong, informed opinion on how brutal it really is. But for what it's worth, assemblers like FASM, NASM, etc, are "macro assemblers", meaning you can effectively create reusable libraries, "functions", etc. And in the case of things like OS kernels, while C is common, you generally don't get the typical "ease" of C, C++, Rust, or whatever you're writing it in; you're going to be writing straight C [or insert language here] without any sort of standard library features, since those are all things that are generally implemented on top of the kernel -- which means you're going to be in for similar levels of brutal wheel-reinventing and extreme low-level development until you've got enough of the system implemented. While doing it all in assembly is still super hardcore, I could imagine an experienced person reaching relatively close to C levels of productivity, especially given that FASM in particular has surprisingly decent tooling and libraries available -- even purpose-built fully-fledged IDEs fresh.flatassembler.net/index.cgi?page=content/1_screenshots.txt I think the bigger "issues" are: - A. Lack of general mindshare; "popular" non-Linux operating systems, like the BSDs, already have a much smaller pool of users and developers available. - B. Lack of people familiar enough with x86 assembly to contribute - C. Being tied to particular platform; again, while macro assemblers make code re-use much easier (and therefore porting easier too), you're still writing assembly for a particular ISA, tying you to a particular architecture or subset of said architecture -- running something like Kolibri on anything that doesn't natively do 32-bit x86, or at least support some form of odd-ball x86 hardware-level translation, like Elbrus or Transmeta, requires significant porting or some sort of software-level x86 translation layer (e.g., something similar to QEMU, Box86, Blink, Rosetta). Also worth noting, while the majority of Kolibri is in assembly, there is nothing stopping you from writing a libc to make use of non-assembly programs when necessary, which is exactly what it appears they've done for a few bits and pieces -- e.g., the browser is a port of NetSurf, a tiny C browser. Similarly, I could imagine binary translation being viable; since Linux doesn't have any sort of "official" libc, the kernel syscalls tend to be very stable, making it a great lingua-franca for when applications are either distributed as proprietary Linux binaries or rely on loads of OS-specific code paths. Several daily-use-ready operating systems, like Illumos, FreeBSD, NetBSD, Windows (WSL1), and previously, OpenBSD, all have/had varying support for running unmodified Linux binaries using this approach. A number of hobbyist OS kernels do it as well. Fiwix is about ~30k sloc in total of pretty much pure C89, making it tiny and easy to compile, yet provides convincing-enough support for 32-bit x86 Linux ABI that it has been really useful for me in terms of producing verifiable builds; I currently bootstrap from a couple hundred *bytes* of hand-written, verifiable hex on "baremetal" to a modern Linux kernel + GCC/LLVM thanks to its simplicity and support for Linux binaries. And as a more real-world example: Prior to Joyent being acquired by Samsung and then eventually shutting down, they ran a large public cloud (think: AWS, GCP, Azure) based on SmartOS, their own own derived from Illumos (OpenSolaris). While they offered proper Linux virtual machines on top of bhyve/kvm for those who truly needed/wanted them, Joyent also ran a successful container-based service. With VMs, you've got overhead from all of the hardware virtualization, plus the overhead of running another Kernel, plus the millions of lines of extra code ripe for security vulnerabilities, but you also typically end up with either the physical server being under-utilized due to giving each and every VM truly dedicated resources [when the majority of the time, applications are not going to be maxing out memory nor pegging all cores], or you end up with poor performance due to the opposite problem - overcomitting/overselling resources, starving VMs for CPU/IO/whatever. So, containers made a ton of sense; why virtualize an entire machine, run multiple kernels, and so on, when you can just isolate applications and give the host kernel full transparency over resource allocation, thread scheduling, etc? In the Linux world, Docker and similar were new, and the way they were built was very different from the approaches taken by FreeBSD and Illumos/Solaris -- Linux essentially provided some primitive APIs you *could* possibly use to sandbox things, and then Docker was built on top of that, whereas Jails and Zones were built from the ground up as containizeration solutions. Because of that, and probably a variety of other reasons, container escapes were (are?) rampant, and so you commonly find people running Docker *on top of VMs*, essentially defeating the point. However, again, Joyent ran Illumos, not Linux; Solaris had Zones since ~2005 and they were pretty battle-tested at this point. Joyent had the competitive advantage of actually being able to run containers on multi-tenant hosts without it being a major security risk. But... again... Illumos, not Linux; it's a hard sell trying to convince your customers to port all their software to Illumos/Solaris when A. maybe they can't, B. it may cost a lot, and C. they'd be risking vendor lock-in. Joyent's solution was to just write a convincing Linux syscall translation layer -- almost something like Wine. But unlike Wine, the surface area of Linux kernel syscalls is a lot smaller than what needs to be done for Windows translation. So, [while still painful] this was actually super feasible and worked out great for them -- you could upload unmodified "Linux" Docker images and they'd transparently be converted to Illumos LX-Branded Zones with you, as the customer, being [hopefully] none the wiser.
@illegalcoding
@illegalcoding 10 ай бұрын
6:44 "No, back, back, back! meow :3" god i fucking love this channel
@spookynutsack
@spookynutsack 10 ай бұрын
NO BACK BACK BACK *meow*
@DccToon
@DccToon 9 ай бұрын
meow :3
@sendevia
@sendevia 9 ай бұрын
meow :3
@trannusaran6164
@trannusaran6164 3 ай бұрын
mrow! :3
@xninja2369
@xninja2369 4 күн бұрын
Also 14:11 Holy f K , it's upside down 😂
@qffif1201
@qffif1201 10 ай бұрын
Cannot wait to rewatch this 25 times in next two weeks. Thanks for video
@amconners
@amconners 10 ай бұрын
absolutely fucking incredible. this is how I found your channel and I don't think I could've asked for a better introduction
@16815
@16815 10 ай бұрын
Same. Really refreshing and different to the norm style commenting. Love it
@ralphwiggum3134
@ralphwiggum3134 10 ай бұрын
That's the most amazing OS I have ever seen! For fitting on a floppy, i expected it to look like DOS. I did not expect fully functioning GUI with icons and color. Simply amazing.
@snotspat
@snotspat 9 ай бұрын
You should look up AmigaOS then, that fit on a DD diskette (half of the HD this one uses). :P
@iangodfrey4518
@iangodfrey4518 9 ай бұрын
​@snotspat Ahhh, C= Commodore Amiga. Those were the days. 1.3, 2.0.
@samhardy6030
@samhardy6030 9 ай бұрын
Just what I was thinking. My A1000 booted from a single floppy.
@cliffhulcoopofficial8075
@cliffhulcoopofficial8075 9 ай бұрын
Well back in the day, the Amiga OS was on a floppy and Atari later brought out newer versions of GEM which were released on a floppy. The original Mac OS was on a floppy too. You would be surprised what was possible in the past.
@iangodfrey4518
@iangodfrey4518 9 ай бұрын
@@cliffhulcoopofficial8075 not surprised at all. Got my first amiga in 1988.
@LKComputes
@LKComputes 10 ай бұрын
oh my god i haven't seen kolibrios in years. i guess if there was anyone who would cover some obscure, small-ass, from-the-ground-up operating system it would be you though, so this all checks out. great as always.
@SonicBoone56
@SonicBoone56 10 ай бұрын
Or Michael MJD, who I jokingly refer to as Druaga1 minus weed. Still convinced they're the same person.
@sebastian19745
@sebastian19745 10 ай бұрын
Actually, those "orthodox file managers" are clones of Norton Commander (1986) not of Midnight Commander (1994) that was also a clone of NC. The third one is FAR Manager and is available for Windows, Linux, OSX and Unix and is made by the one who made RAR.
@andreasklindt7144
@andreasklindt7144 10 ай бұрын
Midnight Commander is still around, developed and maintained. I use the current version 4.8.30 on Linux every day.
@worroSfOretsevraH
@worroSfOretsevraH 10 ай бұрын
DOS Navigator was (and still is) my absolute favorite.
@sebastian19745
@sebastian19745 10 ай бұрын
@@worroSfOretsevraH In my dos days, I remember giving up of NC in favor of DN. I think it was version 1.5 and it was better in many ways than NC.
@sebastian19745
@sebastian19745 10 ай бұрын
@@andreasklindt7144 I use MC on my slackware laptop, even under KDE. I find it more comfortable and easy to use than Dolphin or any explorer like FM.
@xenotiic8356
@xenotiic8356 10 ай бұрын
​@@andreasklindt7144I tend to use gui on Linux because I'm not the most software savvy, but I always gotta get Midnight Commander because it always seems to save my ass when nothing else can...
@otistically
@otistically 10 ай бұрын
Again, I really like how she makes such an obscure OS like Kolibri become an teeny cutie operating system.
@seemasse-more6333
@seemasse-more6333 9 ай бұрын
What? It's a dude, don't be offensive
@felixargyle5424
@felixargyle5424 9 ай бұрын
@@seemasse-more6333 meow :3
@DissociatedWomenIncorporated
@DissociatedWomenIncorporated 9 ай бұрын
@@seemasse-more6333not according to her website
@Lylcaruis
@Lylcaruis 9 ай бұрын
lmao@@seemasse-more6333
@tophatzcoolness
@tophatzcoolness 9 ай бұрын
@@seemasse-more6333 I mean, they look like a trans girl, sound like a trans girl, and act like a trans girl...
@CindyHuskyGirl
@CindyHuskyGirl 9 ай бұрын
seeing e621 in what i thought was a normal tech video was JARRING i guess youre a man of culture
@ClaireFelidae
@ClaireFelidae 10 ай бұрын
My favorite part was when you meowed at the task bar
@marccaselle8108
@marccaselle8108 10 ай бұрын
MEOW!
@AlexEvans1
@AlexEvans1 10 ай бұрын
The distro for OS-9 (a multi-user preemptive multitasking OS) was two 150kb floppies. 1.44 Mb is not that small.
@jyvben1520
@jyvben1520 10 ай бұрын
seems still actively used and upgraded for other cpu ...
@billfusionenterprise
@billfusionenterprise 10 ай бұрын
I thought BEOS was cool at 44 meg download
@charliekahn4205
@charliekahn4205 10 ай бұрын
I thought Mac OS stopped supporting floppy boot by that point
@AlexEvans1
@AlexEvans1 10 ай бұрын
@@charliekahn4205 Not Mac OS9, OS-9 I would also note that Mac OS9 is neither multi-user nor does it have preemptive multitasking.
@JohnMiller-mmuldoor
@JohnMiller-mmuldoor 9 ай бұрын
lol. But does it have a GUI tho?
@forgottencameras
@forgottencameras 10 ай бұрын
For some additional context, a 3.1MP JPG image taken from one of Canon's first DSLRs (circa late year 2000) clocks in between 700kb and 1.7Mb (depending on color variety/exposure), meaning that many of those images from almost 23 years ago are still larger than this entire functional operating system. These images don't even take up half of a 4k display's real estate when viewed at 100%. Before you say that "JPG is compressed", this OS is heavily reliant on compression to fit into the space it does, too. RAW files from the same camera (Canon D30) are usually around 3Mb.
@Okahibe
@Okahibe 10 ай бұрын
I’ve been having a rough few days, however your videos never fail to make me laugh, thank you so much for what you do Snoopie 💕
@SonicBoone56
@SonicBoone56 10 ай бұрын
She more or less is who I wanted to be during college, a cute femme tech nerd with chill vibes. I'm only half of those sadly.
@WindowsG
@WindowsG 10 ай бұрын
@@SonicBoone56 never too late :3
@Dee_Just_Dee
@Dee_Just_Dee 9 ай бұрын
I had a rough day at work today, and I'm so glad that I had started watching this video before work and finished watching it after work. A real good palate cleanser at the absolute least. In seriousness though... mmmph, good vid!
@NervesiT
@NervesiT 6 ай бұрын
4 months snoopie?? i've been coming back to this channel every month for new videos and im starving for your videos, please come back, i need my favorite tech tuber back
@flleeppyy9959
@flleeppyy9959 10 ай бұрын
you are all of my favorite tech youtubers thrown into one omg
@luxploit
@luxploit 10 ай бұрын
the editing is so good :3
@Insightfill
@Insightfill 9 ай бұрын
I remember the QNX demo disk in the late 90s. POSIX, full graphical user interface, graphical text editor, TCP/IP networking, web browser and web server that all fit on a bootable floppy. Wild times.
@lawrencemanning
@lawrencemanning 9 ай бұрын
Came here to find this. Yup the QNX demo was sweet.
@tziuriky86
@tziuriky86 9 ай бұрын
QNX was amazing. I have tried a relatively small CD version but also came across the floppy one you mentioned. I also liked the similarly built linux distro called muLinux, which, however, formatted 1.44 floppies as 1.7 mb floppies (don't ask me how it did that, but it did). It had graphics, games and even a web and mail server built in.
@Insightfill
@Insightfill 9 ай бұрын
@@tziuriky86 Microsoft used to distribute stuff in the same format: "Distribution Media Format." In addition to larger cluster sizes letting them shrink the file table, there were some other tricks. Pretty cool stuff.
@tziuriky86
@tziuriky86 8 ай бұрын
I seem to vaguely remember also some kind of compressed FAT filesystem thing too... I think there was an option on Win95 to compress the filesystem and something like that was available on floppies too@@Insightfill
@NightpireVideos
@NightpireVideos 10 ай бұрын
Using the xp fall wallpaper in a video makes you officially an obscure niche internet celebrity
@zac8603
@zac8603 9 ай бұрын
I love the humor and general vibe of this channel! Just a minute into this video I subbed, keep up the great work.
@AphroditeLov3
@AphroditeLov3 10 ай бұрын
i always have a smile whenever you upload! glad you uploaded! :3
@haroldfarthington7492
@haroldfarthington7492 9 ай бұрын
been finding so many great tech/old software and hardware channels lately. definitely subbed!
@ijnfus
@ijnfus 10 ай бұрын
Underrated channel, deserves more meow :3
@ashtonsretrocomputerroom
@ashtonsretrocomputerroom 10 ай бұрын
Early versions of GEOS fit on a single 5.25 inch floppy disk, 170KB a side.
@SchoolforHackers
@SchoolforHackers 9 ай бұрын
And me with a 5.25” drive and diskettes still...
@Bobplayrox
@Bobplayrox 2 ай бұрын
Been binging the hell out of your videos recently, you def need to come back! Much love dude hope everything with the move is going well.
@FLUFFSQUEAKER
@FLUFFSQUEAKER 9 ай бұрын
I loooove the video style!!! Waiting for the next one 👀
@leifjansson8074
@leifjansson8074 9 ай бұрын
Soo fun to watch! Thank you for a nice video about this super-amazing OS! 🙂
@ToxicAven
@ToxicAven 10 ай бұрын
Hewwo snoop :3 you're awesome and i hope you're doing well at the new place :3
@sylverrez
@sylverrez 6 ай бұрын
The innuendo in the thumbnail was quite something. Very amazing video!
@roggex6875
@roggex6875 10 ай бұрын
this is really, really awesome!!
@jeffreyphipps1507
@jeffreyphipps1507 9 ай бұрын
A compiler usually implies the use of a mid or higher-level language and convert into processor binary. Assemblers convert processor instructions into processor binary. Compiled programs usually pull in precompiled subroutines or DLLs to add to code the programmer wrote, making them noticeably larger.
@asdfghyter
@asdfghyter 5 ай бұрын
thank you for making me feel good about my tetris skills!
@benderb.rodriguez6014
@benderb.rodriguez6014 10 ай бұрын
amazingly impressive :0
@um_idkw
@um_idkw 9 ай бұрын
i like how i have never shown interest in people who most likely put :3 at the end of every sentence on youtube, yet youtube just showed me this channel and im about to binge most of the channel, and great video btw :3
@CoreDreamStudios
@CoreDreamStudios 10 ай бұрын
Great find! Subscribed.
@-validites-
@-validites- 10 ай бұрын
Now try the QNX floppy disk demo!
@n0ita
@n0ita 9 ай бұрын
Literally my new favorite channel.
@Philfluffer
@Philfluffer 10 ай бұрын
No, compilers and assemblers are two different objects. Compilers can take code (like C++ for example, which btw are called ‘high-level languages’) and compile it for a given CPU architecture, like x86 on the PC on this video, or ARM which runs your phone. The assemblers job is to take that code and turn it into machine code, which is what the processor actually uses.
@cygil1
@cygil1 10 ай бұрын
An assembler is just a compiler that operates on a very low level language. The distinction is not fundamental and is largely an accident of history.
@Redhotsmasher
@Redhotsmasher 10 ай бұрын
You're confusing assemblers with linkers, which link multiple object files together into a final binary program. Assembly may just be glorified machine code with labels and macros but that still technically makes it the lowest level programming language possible outside of writing literal machine code. Really, the difference between an assembler and a compiler is that a compiler has to generate machine code functionally equivalent to the high level code you've written and in the process do things like register mapping while an assembler doesn't have to do those particular things because you've already written the exact sequence of instructions you want the CPU to execute and explicitly specified which registers to use when.
@victorlgteskov3128
@victorlgteskov3128 9 ай бұрын
HOLY bingle, litterally new fav channel :# Keep posting bangers!
@godzzwrath
@godzzwrath 9 ай бұрын
boiling hard drive was the best introduction to this channel i couldve ever gotten thank you
@iRaven
@iRaven 10 ай бұрын
Never heard of this, definitely messing with it when I get the chance to :3 Has a nice little GUI and everything!
@eDoc2020
@eDoc2020 10 ай бұрын
The most amazing thing is that you didn't have a compatible sound or network card. Take a random ISA sound card from the second half of the 1990s and chances are it will be SB16 compatible and work with just about any OS. And the two most common decent PCI network cards of that period were probably the 3Com 3C905 and Intel Pro/100. And the Realtek 8139 was super common in cheap cards for ages, now replaced by the Gigabit-capable 8169. I'm having a harder time finding a PCI network card online that's _not_ compatible.
@LegendaryKenneth
@LegendaryKenneth 9 ай бұрын
I was not expecting a GUI! Startled me.
@TNE_YT
@TNE_YT 10 ай бұрын
The taquitoes legacy lives on…. Btw good stuff, love your content!!
@koduflower2000
@koduflower2000 10 ай бұрын
this is the most interesting review of KolibriOS I've ever seen so far...
@kiyoshi_the_devil
@kiyoshi_the_devil 9 ай бұрын
Thank you KZfaq for recommending me this. I love it so much. ^^
@wallflowerxm
@wallflowerxm 10 ай бұрын
So I've found this channel today, and now I'm gonna be up until 6am meowing and in tights
@mantacid1221
@mantacid1221 9 ай бұрын
Saw the boiled hard drive and heard the phrase “taquito summoning circle” and knew I had to sub.
@boneappletee6416
@boneappletee6416 6 ай бұрын
Ohmygod this is the first video of yours I've seen, and am loving your channel! :D Already subscribed.
@schztinky2820
@schztinky2820 9 ай бұрын
a friend of mine brought me here, i think i have a new favorite channel
@fenixlolnope361
@fenixlolnope361 10 ай бұрын
YES i wanna watch you struggle with numbers! xD
@KanadGodse
@KanadGodse 10 ай бұрын
Windows also has 2 text editors. Notepad for plain text and Wordpad for rich text.
@floydlooney6837
@floydlooney6837 10 ай бұрын
Getting any OS on a floppy is impressive.
@aaronmicalowe
@aaronmicalowe 9 ай бұрын
So is getting a whole ass floppy into a camera. 😂
@jessestrobel2
@jessestrobel2 10 ай бұрын
lol, I thought from the thumbnail you may have been talking about DOS 6.21 with the no-hard drive installation option, where it essentially lets you use DOS with a single 3.5 in. floppy. It's a solid option if you have an era-appropriate machine with a dysfunctional or absent hard drive / hdd controller.
@CrazyArtEducator
@CrazyArtEducator 9 ай бұрын
OS on a floppy? In 2020's! That's unheard of. Amiga OS did something very similar in 80-90's on DD disk (880Kb) without packing files. QNX did this in 2000's and you had browser on fully multitasking OS. Still. Keep up the good work Kolibri! Small is beautiful.
@petefrancisco3267
@petefrancisco3267 9 ай бұрын
Why is it surprising? Yes MSDOS can fit in a 2.5mb floppy disk... We called it the "boot disk"
@grandpaseed
@grandpaseed 9 ай бұрын
Ahh memories thanks snoopy
@adwaitagnome
@adwaitagnome 9 ай бұрын
Is there any compression with this system at all? Because I find it slightly hard to believe that you could pull off a GUI with a decent selection of fairly functional applications in just 1.44MB. The desktop wallpaper looks good enough that I'd imagine it would be 1.44MB it's self. Also you are absolutely adorable and earn a subscribe because of that :3
@tziuriky86
@tziuriky86 9 ай бұрын
A gui can be created by a bunch of geometrical functions that draw such shapes, you don't really need chunky graphical libraries and classes that contain graphical objects to display anything like that like we do nowadays with high level programming: it's all programmed in assembly so it is fairly possible.It's likely that the biggest file in the whole thing is the wallpaper 😁😁 I've tried the predecessor of this OS already 20 years ago (Menuet OS) and it's always been like this. I used to make stuff in BASIC as a kid and weighted nothing. If you look into yesteryear programming and formats you'll find amazing stuff. Like the HAM format which allowed me to make videos with VHS quality weighting maybe 500KB for Amiga computers. About 5 years ago I even made a website with such files, that could be downloaded on Amiga computers (late 80's / early 90's): my Amiga 1200, for example, had only a 14 mhz CPU, 2 megs of ram and up to 4096 colours graphics. Equipped with a network card and a browser, I could access my own website and download such video files directly, that would literally start IMMEDIATELY with no delay when clicked or run through command line, as the image frames and sound bits were thrown directly onto the hardware without any special processing or decoding. While the quality is nothing compared to nowadays formats and tech, it was amazing to see the snappiness of such system (the OS just boots in 1 second in there, and has software that was used in the 80's to make Sci-fi movies....). Imagine videos with audio and all, just a few KB's, so they'd also fit floppies if you'd wish so 😁😁 Essential and minimalist computing is possible and is fun.
@tziuriky86
@tziuriky86 9 ай бұрын
PS: Smash the fash 😎😎 always!
@Tony-Dev
@Tony-Dev 10 ай бұрын
thank god, snoopies back!
@David_Phantom
@David_Phantom 10 ай бұрын
And here i thought it was Puppy Linux when i saw the community post. Because i dont read.
@TotallyNotPatrickfr
@TotallyNotPatrickfr 10 ай бұрын
Another gem of a video, beautiful.
@WindowsG
@WindowsG 10 ай бұрын
aaa tyy!~
@AlexGFrank
@AlexGFrank 10 ай бұрын
You're the only person whose contwnt i love so much i watch it without speeding it up Please do awesome stupud crap more frequently Honestly, i would've thrown money at you if i could, the stupid payment system won't let me :(. I promise to do so as soon as i get out of that hellhole of a country
@Zellonous
@Zellonous 10 ай бұрын
If I don't want to watch someone's stuff I just don't watch it. Speeding it up is weird... I never use it.
@Gold171
@Gold171 10 ай бұрын
@@Zellonous That is the state of people's attention span in this day and age.
@AlexGFrank
@AlexGFrank 10 ай бұрын
@@Gold171 more like "my free time is too valuable to waste it on watching something at regular speed, but i'm still interested enough to invest some amount of time into the vid". That's how i feel about most content. But sometimes there are things that are eorth the full 40 minutes or however long they take. Even though i'm so used to 2x or sometimes even 3x, that regular human speech feels weird now
@Sonmz
@Sonmz 10 ай бұрын
I remember running QNX from a three inch floppy disk in the early 00's. The system was also loaded into RAM.
@user-sd3ik9rt6d
@user-sd3ik9rt6d 10 ай бұрын
Full gui, qnx was like magic
@Sonmz
@Sonmz 10 ай бұрын
@@user-sd3ik9rt6d Yes it was! 😉
@ErazerPT
@ErazerPT 10 ай бұрын
Yeah, every time i see stuff like this the reaction is "Oh, someone 'innovated' what QNX-Demo did in 1999".
@supercompooper
@supercompooper 10 ай бұрын
You should try and find the QNX one disk drmo.
@masonthedunce3711
@masonthedunce3711 9 ай бұрын
The Druaga1 reference made me sub instantly
@illegalcoding
@illegalcoding 10 ай бұрын
YESSSSSS NEW VIDEO!!!!!!!!!!
@Ivy-pe2wz
@Ivy-pe2wz 10 ай бұрын
"oh and the operating system just FUCKING booted" --- Subscribed.
@timothymallon
@timothymallon 10 ай бұрын
I'm SCREAMING at your thumbnail for this video! The floppy is BACKWARDS!!!!
@bitsculptor
@bitsculptor 10 ай бұрын
I was surprised how far down I had to scroll to find this comment. The backwards floppy was the only reason I clicked on the video. 😂
@snooks5607
@snooks5607 9 ай бұрын
@@bitsculptor clickbait thumbnails are quite common these days, I understand the struggle of keeping the algorithm happy just wish that authors would add a comment acknowledging what they did so that people wouldn't lose their minds over these gimmicks, adding the comment shouldn't hurt them since they already got the click
@6godYT
@6godYT 10 ай бұрын
awesome video snoopieeeee
@realvivifromloona
@realvivifromloona 6 ай бұрын
heyy omg i miss ur videos!! hope ur doing good
@kitastro
@kitastro 10 ай бұрын
im only here due to the cat ears
@Roriloty
@Roriloty 10 ай бұрын
never seen such a great tetris player before!
@MrCouchIncident
@MrCouchIncident 10 ай бұрын
Boiling the hard drive convinced me to sub.
@dawidsz56
@dawidsz56 10 ай бұрын
even a simple .cpp file compiled to .exe to .out file is around 2.4 MBs, how is this even possible
@bollifamily
@bollifamily 6 ай бұрын
Your video thumbnail has the 3.5" floppy being inserted into the drive backwards, which at first I found funny until I realized how old that makes me to know this through first hand experience.
@LikerNC
@LikerNC 10 ай бұрын
NEW VIDEO LETS GOOOOOO :3
@TaxiYoshi64
@TaxiYoshi64 10 ай бұрын
lets go new vid
@JPGT
@JPGT 9 ай бұрын
Glad to see that the file manager does really support showing thumbnail
@UltimatePerfection
@UltimatePerfection 9 ай бұрын
Brings back memories. I remember downloading FDD friendly Linux distros and writing them to floppies with Rawrite. Actually one of my first exposure to Linux, aside of Knoppix.
@ruadeil_zabelin
@ruadeil_zabelin 10 ай бұрын
Yay another wge! I'm smashing that like button uwu NYAAAAA~
@amberisvibin
@amberisvibin 10 ай бұрын
remember to stay safe and it's okay to take your time!
@keylowmike85
@keylowmike85 10 ай бұрын
The Druaga references were superb! The video was great as always! Hopefully things will be better for you.
@Anarchistcowboy
@Anarchistcowboy 6 ай бұрын
this guy is funny as shit. subbed, and never fucking change.
@O5RandDrMoss
@O5RandDrMoss 10 ай бұрын
SHE'S ALIVE, AGAIN!
@jimbotron70
@jimbotron70 10 ай бұрын
QNX in 1997: hold my beer.
@julioprado7676
@julioprado7676 10 ай бұрын
Yay she's back :)
@bebre_2288
@bebre_2288 10 ай бұрын
it is my birthday today, such a present!
@cozymistbreeze
@cozymistbreeze 10 ай бұрын
Another classic from WGE as to be expected :3
@StarSetByte
@StarSetByte 10 ай бұрын
ANOTHER BANGER
@guts2048
@guts2048 10 ай бұрын
2:58 man that was oooold
@herrcrazi7495
@herrcrazi7495 10 ай бұрын
Catboy computer guy, of course ! Perfection ! (Nya~)
@ShayBlez
@ShayBlez 10 ай бұрын
Boiling a HD? *Instant sub*
@MatthewCenance
@MatthewCenance 10 ай бұрын
I forgot this operating system was so small! It's that assembly based OS I tried out for a bit a few years ago.
@robinpage2730
@robinpage2730 10 ай бұрын
Everything should be assembly.
@BAgodmode
@BAgodmode 10 ай бұрын
Dude druaga1’s new channel is wild
@CTimmerman
@CTimmerman 10 ай бұрын
The largest file on that disk is probably the background image.
@blahaj___
@blahaj___ 10 ай бұрын
the audio sounds fine
@foxyloon
@foxyloon 9 ай бұрын
Great, now I'm tempted to try this OS on my Pentium 200 machine. X3 What an entertaining video, got several laughs out of it along the way~
@terryc7142
@terryc7142 9 ай бұрын
The most impressive thing to me is that you got it to work with the floppy diskette in backwards. (thumbnail photo) 😆
@TheRadmin1724
@TheRadmin1724 10 ай бұрын
1.44 MB OS what fucking parallel universe am i in rn
Linux for.. Furries? A Look at 3 Weird Linux Distros!
36:46
WindowsG Electronics
Рет қаралды 63 М.
Gentoo Linux on an iBook G4! (ft. Maid Outfit)
1:22:36
WindowsG Electronics
Рет қаралды 52 М.
MEU IRMÃO FICOU FAMOSO
00:52
Matheus Kriwat
Рет қаралды 41 МЛН
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 4,9 МЛН
THEY WANTED TO TAKE ALL HIS GOODIES 🍫🥤🍟😂
00:17
OKUNJATA
Рет қаралды 13 МЛН
Кремниевые Титаны #28: KolibriOS
20:11
Дмитрий Бачило
Рет қаралды 88 М.
I built my own 16-Bit CPU in Excel
16:28
Inkbox
Рет қаралды 1,4 МЛН
i-Opener - The $99 Computer That Cost a Company Millions
32:41
Michael MJD
Рет қаралды 945 М.
I Wrote Minecraft for a Calculator
14:43
The Science Elf
Рет қаралды 1,3 МЛН
The 11 Best Linux Distributions
16:23
Titus Tech Talk
Рет қаралды 169 М.
Haiku Got Awesome. Really Awesome.
18:59
Action Retro
Рет қаралды 209 М.
Unboxing a Copy of Windows NT and Visual Basic!
42:54
WindowsG Electronics
Рет қаралды 9 М.
Modern Linux on a 133MHz Pentium? Alpine on i586! (feat. NsCDE)
46:29
WindowsG Electronics
Рет қаралды 43 М.
NixOS Setup Guide - Configuration / Home-Manager / Flakes
3:01:39
Matthias Benaets
Рет қаралды 156 М.
The Cursed NAS Setup, With Alpine Linux!
25:06
WindowsG Electronics
Рет қаралды 14 М.
Мой инст: denkiselef. Как забрать телефон через экран.
0:54
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 4,8 МЛН
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
ЗЕ МАККЕРС
Рет қаралды 153 М.