Тёмный

An Operating System in 1.44 MBs 

WindowsG Electronics
Подписаться 15 тыс.
Просмотров 73 тыс.
50% 1

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

Наука

Опубликовано:

 

4 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 561   
@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.
@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.
@anta40
@anta40 10 месяцев назад
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!
@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 6 дней назад
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.
@CindyHuskyGirl
@CindyHuskyGirl 9 месяцев назад
seeing e621 in what i thought was a normal tech video was JARRING i guess youre a man of culture
@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...
@ClaireFelidae
@ClaireFelidae 10 месяцев назад
My favorite part was when you meowed at the task bar
@marccaselle8108
@marccaselle8108 10 месяцев назад
MEOW!
@Filipex13
@Filipex13 День назад
meow :3
@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...
@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?
@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
@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.
@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...
@NightpireVideos
@NightpireVideos 10 месяцев назад
Using the xp fall wallpaper in a video makes you officially an obscure niche internet celebrity
@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!
@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
@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.
@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.
@ToxicAven
@ToxicAven 10 месяцев назад
Hewwo snoop :3 you're awesome and i hope you're doing well at the new place :3
@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
@haroldfarthington7492
@haroldfarthington7492 9 месяцев назад
been finding so many great tech/old software and hardware channels lately. definitely subbed!
@flleeppyy9959
@flleeppyy9959 10 месяцев назад
you are all of my favorite tech youtubers thrown into one omg
@kitastro
@kitastro 10 месяцев назад
im only here due to the cat ears
@AphroditeLov3
@AphroditeLov3 10 месяцев назад
i always have a smile whenever you upload! glad you uploaded! :3
@mantacid1221
@mantacid1221 9 месяцев назад
Saw the boiled hard drive and heard the phrase “taquito summoning circle” and knew I had to sub.
@luxploit
@luxploit 10 месяцев назад
the editing is so good :3
@leifjansson8074
@leifjansson8074 9 месяцев назад
Soo fun to watch! Thank you for a nice video about this super-amazing OS! 🙂
@jeffreyphipps1507
@jeffreyphipps1507 10 месяцев назад
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.
@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.
@sylverrez
@sylverrez 6 месяцев назад
The innuendo in the thumbnail was quite something. Very amazing video!
@FLUFFSQUEAKER
@FLUFFSQUEAKER 9 месяцев назад
I loooove the video style!!! Waiting for the next one 👀
@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!
@-validites-
@-validites- 10 месяцев назад
Now try the QNX floppy disk demo!
@boneappletee6416
@boneappletee6416 6 месяцев назад
Ohmygod this is the first video of yours I've seen, and am loving your channel! :D Already subscribed.
@ijnfus
@ijnfus 10 месяцев назад
Underrated channel, deserves more meow :3
@floydlooney6837
@floydlooney6837 10 месяцев назад
Getting any OS on a floppy is impressive.
@aaronmicalowe
@aaronmicalowe 9 месяцев назад
So is getting a whole ass floppy into a camera. 😂
@David_Phantom
@David_Phantom 10 месяцев назад
And here i thought it was Puppy Linux when i saw the community post. Because i dont read.
@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 10 месяцев назад
@@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
@jimbotron70
@jimbotron70 10 месяцев назад
QNX in 1997: hold my beer.
@godzzwrath
@godzzwrath 9 месяцев назад
boiling hard drive was the best introduction to this channel i couldve ever gotten thank you
@roggex6875
@roggex6875 10 месяцев назад
this is really, really awesome!!
@victorlgteskov3128
@victorlgteskov3128 9 месяцев назад
HOLY bingle, litterally new fav channel :# Keep posting bangers!
@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.
@xymaryai8283
@xymaryai8283 9 месяцев назад
"why do you need multiple text editors" programmers who only use their darling vim or nano, but can't handle using their second option
@Ivy-pe2wz
@Ivy-pe2wz 10 месяцев назад
"oh and the operating system just FUCKING booted" --- Subscribed.
@asdfghyter
@asdfghyter 5 месяцев назад
thank you for making me feel good about my tetris skills!
@wallflowerxm
@wallflowerxm 10 месяцев назад
So I've found this channel today, and now I'm gonna be up until 6am meowing and in tights
@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.
@KanadGodse
@KanadGodse 10 месяцев назад
Windows also has 2 text editors. Notepad for plain text and Wordpad for rich text.
@n0ita
@n0ita 9 месяцев назад
Literally my new favorite channel.
@LegendaryKenneth
@LegendaryKenneth 9 месяцев назад
I was not expecting a GUI! Startled me.
@benderb.rodriguez6014
@benderb.rodriguez6014 10 месяцев назад
amazingly impressive :0
@koduflower2000
@koduflower2000 10 месяцев назад
this is the most interesting review of KolibriOS I've ever seen so far...
@TNE_YT
@TNE_YT 10 месяцев назад
The taquitoes legacy lives on…. Btw good stuff, love your content!!
@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"
@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
@CoreDreamStudios
@CoreDreamStudios 10 месяцев назад
Great find! Subscribed.
@kiyoshi_the_devil
@kiyoshi_the_devil 9 месяцев назад
Thank you RU-vid for recommending me this. I love it so much. ^^
@dawidsz56
@dawidsz56 10 месяцев назад
even a simple .cpp file compiled to .exe to .out file is around 2.4 MBs, how is this even possible
@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".
@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.
@ZipplyZane
@ZipplyZane 9 месяцев назад
Would a 3DFX driver even be useful on an OS running in 2D? I know for sure that the Voodoo series cards didn't have 2D support, and relied on you having a separate 2D graphics card.
@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.
@cygil1
@cygil1 10 месяцев назад
I wonder if I could make it small enough to fit on a ZX Spectrum 128?
@amberisvibin
@amberisvibin 10 месяцев назад
remember to stay safe and it's okay to take your time!
@LikerNC
@LikerNC 10 месяцев назад
NEW VIDEO LETS GOOOOOO :3
@megamasterbloc
@megamasterbloc 5 месяцев назад
I really like the wallpaper at the start of your video, do you know where it was taken ?
@CTimmerman
@CTimmerman 10 месяцев назад
The largest file on that disk is probably the background image.
@keepitshort4208
@keepitshort4208 9 месяцев назад
I need help as in which os or kernel works on a laptop with these specs ? System Type X86-based PC Processor Intel(R) Core(TM)2 Duo CPU T6400 @ 2.00GHZ, 2000 Mhz, 2 Core(s) Would really appreciate the help 🙌🏼
@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!
@TheRadmin1724
@TheRadmin1724 10 месяцев назад
1.44 MB OS what fucking parallel universe am i in rn
@TsukiToHotaru
@TsukiToHotaru 10 месяцев назад
An even more fascinating fact is that the whole thing including all programs are written in assembly by hands. What f
@JPGT
@JPGT 9 месяцев назад
Glad to see that the file manager does really support showing thumbnail
@terryc7142
@terryc7142 9 месяцев назад
The most impressive thing to me is that you got it to work with the floppy diskette in backwards. (thumbnail photo) 😆
@schztinky2820
@schztinky2820 9 месяцев назад
a friend of mine brought me here, i think i have a new favorite channel
@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~
@SonictrainkidDoesFurryStuff
@SonictrainkidDoesFurryStuff 6 месяцев назад
4:39: "That's the F ing theme to angry birds"
@user9267
@user9267 10 месяцев назад
" a stock installation of Windows is 27 GBs, and Linux isn't much better at 500 MBs.." Isn't much better? That's 54x smaller 😭😭
@sharonbraselton4302
@sharonbraselton4302 9 месяцев назад
wrjbg we git big stiràge
@mantacid1221
@mantacid1221 8 месяцев назад
I’ve been thinking about what to use the express card slot on my thinkpad for, and you seemed like the person who would know of some niche hardware projects for that. Any ideas?
@WindowsG
@WindowsG 8 месяцев назад
Well.. a sane option would be a USB 3 card but if you're looking for something not sane, a PCIE 16x riser >:3
@mantacid1221
@mantacid1221 8 месяцев назад
So what about a small proxy server
@M1szS
@M1szS 10 месяцев назад
the fact that an OS this small exists, and then it has a GUI is just insane
@tziuriky86
@tziuriky86 9 месяцев назад
If you think about it, it's more insane that lazy programming and quick profit is making us use bloated stuff that consumes a lot more power = electricity and waste more time than it should. If nowadays computers were equipped with OS's and software programmed like this, they'd be flying fast like spaceships!
@KenjiUmino
@KenjiUmino 8 месяцев назад
@@tziuriky86 ... and you would not need to buy new hardware everytime a microsoft developer sneezes
@Radiiiiiiiii
@Radiiiiiiiii 10 месяцев назад
OMFG the ibookguy reference killed me
@Radiiiiiiiii
@Radiiiiiiiii 10 месяцев назад
An Ashens clip too, best video ever :p
@TotallyNotPatrickfr
@TotallyNotPatrickfr 10 месяцев назад
Another gem of a video, beautiful.
@WindowsG
@WindowsG 10 месяцев назад
aaa tyy!~
@magicarmyman
@magicarmyman 6 месяцев назад
I have a weird ptsd attack with this episode as I was watching it on my phone while stealing someone else's french fries
@guts2048
@guts2048 10 месяцев назад
2:58 man that was oooold
@JohnMiller-mmuldoor
@JohnMiller-mmuldoor 9 месяцев назад
I’d like to see someone get the last version of x86 Mac Pro Desktop with a terabyte of RAM and terabytes of SSD storage, and then see how many virtualbox instances of KolibriOS you can run simultaneously on one modern machine.
@fenixlolnope361
@fenixlolnope361 10 месяцев назад
YES i wanna watch you struggle with numbers! xD
@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.
@Roriloty
@Roriloty 10 месяцев назад
never seen such a great tetris player before!
@herrcrazi7495
@herrcrazi7495 10 месяцев назад
Catboy computer guy, of course ! Perfection ! (Nya~)
@KenjiUmino
@KenjiUmino 8 месяцев назад
Hint: the missing cpu instruction for animage is MMX ... just tried it on a random pentium 2 laptop and it didn't complain. Unfortunately, this OS has no support for my usb network adapter (tried a "D-Link Corp. DUB-E100 Fast Ethernet Adapter(rev.B1) [ASIX AX88772]" because that is what I had at hand) ... otherwise I would have tried actually browsing the web with this OS
@supercompooper
@supercompooper 10 месяцев назад
You should try and find the QNX one disk drmo.
@awsomedude0698
@awsomedude0698 4 месяца назад
See you in hopefully not nearly as long…. Uploaded 6 months ago. Lol
@WindowsG
@WindowsG 4 месяца назад
well, in my defense i did say hopefully
@awsomedude0698
@awsomedude0698 4 месяца назад
@@WindowsG haha, for sure! No worries friend, the randomness is kinda part of the charm
@that_teegor
@that_teegor 9 месяцев назад
The most amazing thing is that the floppy drive can read the disk when inserted backwards 🙃
@keylowmike85
@keylowmike85 10 месяцев назад
The Druaga references were superb! The video was great as always! Hopefully things will be better for you.
@amberisvibin
@amberisvibin 10 месяцев назад
the correct method to play tetris is to clear lines by filling them all the way in, hope this helps~
@WindowsG
@WindowsG 10 месяцев назад
oh my god
@amberisvibin
@amberisvibin 10 месяцев назад
@@WindowsG >:3
@Will-ew8fc
@Will-ew8fc 10 месяцев назад
Why is the floppy disk backwards in your video thumbnail? Funny content though, just found your channel!
Далее
Linux for.. Furries? A Look at 3 Weird Linux Distros!
36:46
Happy 4th of July 😂
00:12
Просмотров 3,6 млн
Кремниевые Титаны #28: KolibriOS
20:11
I built my own 16-Bit CPU in Excel
16:28
Просмотров 1,4 млн
NeXTstation Color - english
16:41
Просмотров 644
Unboxing a Copy of Windows NT and Visual Basic!
42:54
I Wrote Minecraft for a Calculator
14:43
Просмотров 1,3 млн
You Should Daily Drive Haiku OS
14:12
Просмотров 224 тыс.
Gentoo Linux on an iBook G4! (ft. Maid Outfit)
1:22:36
Просмотров 53 тыс.
The History of X11
58:19
Просмотров 230 тыс.
The Cursed NAS Setup, With Alpine Linux!
25:06
Просмотров 14 тыс.
When you have 32GB RAM in your PC
0:12
Просмотров 446 тыс.
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
Просмотров 166 тыс.
Blackview N6000SE Краш Тест!
1:00
Просмотров 34 тыс.