What Happens When Booting Linux with Low Memory

Sdílet
Vložit
  • čas přidán 11. 04. 2024
  • In this video I will demonstrate how Linux reacts when it boots with too little memory.
    Documentation used in video:
    Kernel Docs - SysReq: docs.kernel.org/admin-guide/s...
    Wikipedia ASLR: en.wikipedia.org/wiki/Address...
  • Věda a technologie

Komentáře • 167

  • @taldmd
    @taldmd Před 26 dny +466

    I used to host my router and homelab server on an OG Pentium machine with 32 MB running Debian (Potato, then Woody) until around 2004-2005. Worked like an absolute charm. 20 years later you need 64 MB just to boot the kernel.

    • @elendil354
      @elendil354 Před 26 dny +98

      Bloat.

    • @Tart0p0mme78
      @Tart0p0mme78 Před 26 dny +100

      Compile your own kernel then

    • @Diamonddrake
      @Diamonddrake Před 26 dny +113

      You can still run Linux with less memory than this, but not with all the kernel modules enabled

    • @rian0xFFF
      @rian0xFFF Před 26 dny +6

      security

    • @Mmouse_
      @Mmouse_ Před 26 dny +55

      First hard drive I ever had was 20mb - I remember talking to a friend about if video would ever be available online, we both agreed the resources required would be stupid and that it would never happen and yet... Here we are.

  • @GnomeEU
    @GnomeEU Před 25 dny +168

    The source code looks so simple. In every startup you would have 70 abstractions and the strings would never be in the code itself but in some translation lookup table.

    • @KingJellyfishII
      @KingJellyfishII Před 24 dny +43

      I'm always surprised at how seemingly simple yet complex the Linux kernel is. it seems like you can understand pieces without understanding the whole, which is something that can't be said of a lot of programs and probably something to strive for.

    • @gwentarinokripperinolkjdsf683
      @gwentarinokripperinolkjdsf683 Před 22 dny +8

      I find myself reading the linux kernel when i want to underatand how to do certain things. And then i also find myself reading some third party linux drivers and my god it's a night and day difference

    • @teldrah
      @teldrah Před 16 dny +9

      ⁠Linus Torvalds still personally checks every merge request, and it shows. Say about the man what you want, but he has zero tolerance for bad code.

    • @gwentarinokripperinolkjdsf683
      @gwentarinokripperinolkjdsf683 Před 16 dny +4

      @@teldrah I think a lot of things he is criticized for are actually positives and he is successful because of those "issues", not in spite of them. Particularly his "rudeness"

    • @maybenat
      @maybenat Před 10 dny

      @@gwentarinokripperinolkjdsf683 Eh, I wouldn't say so, he literally took a break at one point because he himself recognized this as an issue, because it was more than just being slightly "rude". You can be strict about kernel code quality without being a toxic asshole

  • @dev.rahulgurjar
    @dev.rahulgurjar Před 26 dny +79

    Please, start a series on the OS basics.How it actually works, from scratch.

  • @realityveil6151
    @realityveil6151 Před 22 dny +13

    0:45 you're misreading the output of free. the 'free' column is how much memory is entirely unused, does not have any role at all. This is the pool that new memory requests will be drawn from first.
    'Available' is the column that shows you how much more memory can be used by applications, even though it is technically in use now.
    How is this possible? Because the linux kernel will use portions of your ram to buffer and cache (hence why there's a buff/cache column) data that isn't it direct use by an application *right now*, but may still be useful in the future. However, if there is no free memory and more memory is required, these caches will be cleared and that memory will be used instead.
    So at the timestamp provided, the kernel has addressed 45.3 MB of ram. 22.7MB is in hard use by the system or it's applications. 2.7mb has no purpose. 120k is in use by the tmpfs filesystem. 20Mb is tied up in buffers and caches. 13.5 MBs are available for use should an application or the kernel request more memory.

  • @Problematist
    @Problematist Před 7 dny +3

    I love the "Found nothing?!?!" message in the kernel

  • @eduardoroth8207
    @eduardoroth8207 Před 26 dny +31

    darn, i didn't about that sys request thing, quite awesome, it's like personally asking the kernel to do something from user space

    • @Epsicronics
      @Epsicronics Před 23 dny +4

      I like the idea that sysrqs are just you telling the kernel "I messed up, help."

  • @SyphistPrime
    @SyphistPrime Před 24 dny +22

    Wow, that's cool. I also like how you showed the source code to give us an idea of what was happening. I'm not the best at reading code myself as I rarely develop things, but the quick explanation with the relevant code right there was super helpful for me.

  • @MeriaDuck
    @MeriaDuck Před 26 dny +110

    Feeling a bit old :-) Ran linux, compiled kernel and even ran X window with netscape in 4Mb of RAM and 4Mb or swap (1995). Later (2003) we had 'big machines' in a 19" rack with 256Mb of RAM, plenty for linux AND a few Java JVMs!

    • @shallex5744
      @shallex5744 Před 26 dny +13

      something i wonder is why even the most simple and trivial of processes on a system nowadays seem to use at least several mb of ram to run, when obviously that would have been too much for machines of 70s,. 80s, and some in the 90s, so surely processes back then must have used less ram than they do now, yet when i compile my own program that does nothing but sit an in infinite loop forever, it takes 1 mb of ram to sit there and do nothing. i just wonder what changed between then and now

    • @yourcat8113
      @yourcat8113 Před 26 dny

      @@shallex5744 I imagine it's partly going from 32 bit to 64 bit doubled address and instruction lengths along with the libraries used to run everything getting bigger to account for all the different types of hardware they need to run on

    • @wetfloo
      @wetfloo Před 26 dny

      ​​@@shallex57441mb for a program sounds like a stack size allocated by modern OSes. It has to be a constant size. That makes me think that defaults simply increased since then

    • @sepgh2216
      @sepgh2216 Před 26 dny +18

      @@shallex5744 one of the changes is at least moving from 32bit machines to 64 ones I guess. I also assume kernels do more complicated things because in short everything is more complicated, from cpu architectures, to multi threaded and multi process environments, security, etc.

    • @FluffyFoxUwU
      @FluffyFoxUwU Před 23 dny +2

      @@shallex5744 i think libc just different than old times and you could just write bare assembly which infinite loop on `_start` symbol and you could drop the libc
      but at the end yea i can see what you mean there basic infinite loop takes way more than infinite loop in the past

  • @wrathofainz
    @wrathofainz Před 26 dny +121

    "Kernel panic" is hilarious to me for some reason.
    Insert "panik!" Meme here

    • @coolguy87r4
      @coolguy87r4 Před 21 dnem +3

      The kernel actually "panics", because it has hit something critical, just like us humans. When we did something critically wrong, we panic.

  • @justinbasinger7728
    @justinbasinger7728 Před 26 dny +15

    I appreciate the structure of your videos. All the information you need, in a terse straight forward package. Always well done and covering topics I wouldn't likely dig into myself otherwise. Thanks!

  • @prochazkaml
    @prochazkaml Před 24 dny +7

    You can get Linux 6.5.0 to run alongside a minimal distro built with buildroot on an ESP32-S3 microcontroller with 8 MB of PSRAM. IIRC, after logging in, it still had ~3.5 MB free. (And yes, the onboard Wi-Fi does work.)

  • @Hexnano
    @Hexnano Před 26 dny +4

    One of the few channels I turned notifications on, awesome Linux content!

  • @bobsock8718
    @bobsock8718 Před 26 dny +49

    I honestly don't know why, but seeing you use windows to record this video feels like a betrayal XD

    • @motoochhotoochintoo8406
      @motoochhotoochintoo8406 Před 24 dny +1

      Yes lol

    • @LostieTrekieTechie
      @LostieTrekieTechie Před 23 dny +3

      I was wondering how they were making sure the key combo was not being intercepted by the host, were they running a different architecture? no it's windows

    • @pwii
      @pwii Před 22 dny

      @@LostieTrekieTechie handling of the SysRQ key is a parameter you can disable when compiling the kernel. It's enabled by default but labeled as "don't enable this unless you really know what this hack does"

    • @manhle1582
      @manhle1582 Před 22 dny +3

      Windows is fine, but I got triggered when I saw Edge 😅

  • @joshuahudson2170
    @joshuahudson2170 Před 26 dny +5

    I've booted Linux in 16MB. I understand it can boot in as little as 2MB. Build your kernel without things you don't need. Usually this means disable loadable modules and only compile in drivers for hardware you actually have.

  • @dj.yacine
    @dj.yacine Před 26 dny +15

    Always high quality content 👌

  • @wirytiox1577
    @wirytiox1577 Před 23 dny +1

    Thank you for explaining the acronyms for people that is not full into the subject is extreamly usefull ❤

  • @valentin-catalin1859
    @valentin-catalin1859 Před 24 dny +1

    Awesome channel, instant subscription. I have been binge-watching most of your Linux/bash/vim content. Hope this channel gets more subscribers so you can continue making videos.

  • @quintencabo
    @quintencabo Před 26 dny +4

    How cool thanks for teaching about the sys request

  • @justinnamilee
    @justinnamilee Před 26 dny +1

    Neat! And the SysRq commands are _very_ useful when fooling around with custom kernel builds and you screw something up...

  • @thinkingRN
    @thinkingRN Před 22 dny

    I really like these short kernel videos. Maybe you could do more of this, explain little snippets of code of the kernel (not necessarily error handling)

  • @Jp-ue8xz
    @Jp-ue8xz Před 9 dny

    Damn oveer a decade on linux, but today I finally learned what the sysreq key is good for lmao, good stuff!

  • @whamer100
    @whamer100 Před 21 dnem

    i remember trying out alpine once for a CTF game, and i was just amazed at how everything just worked with so little memory

  • @sir_enuf
    @sir_enuf Před 26 dny +1

    Love your content.

  • @EdwardChan.999
    @EdwardChan.999 Před 25 dny

    I don't know why but this is very entertaining!

  • @DIYTechRepairs
    @DIYTechRepairs Před 26 dny +5

    My first linux machine had 4mb ram so thats not small :D Not even 4mb is small
    But still i like your vids! Keep em comming.

  • @DanelonNicolas
    @DanelonNicolas Před 26 dny

    I love it. just love it. can't believe that key is for that. awesome 👍🏻 😎

  • @Aragubas
    @Aragubas Před 8 dny

    😮 wow did not know about the sysrq key

  • @markzuckerbread1865
    @markzuckerbread1865 Před 26 dny

    This should be an exercise in OS courses in universities, nice way to show what happens on a deadlock.

  • @x4exr
    @x4exr Před 7 dny

    Great video!

  • @zootsuitpenguin
    @zootsuitpenguin Před 26 dny

    Great info thanks!!

  • @cassianomartin2699
    @cassianomartin2699 Před 22 dny +1

    We've built a router firmware using kernel 2.6 in a mips hardware, it had 16 megs of ram and 4 megs of SPI flash. the entire system had to be compressed into the flash, only the kernel took 2 megs of flash space, the rest was used for userland tools. Kernel would uncompress itself in memory, taking about 8mb, so we had only 8 megs available for the rest of the system. It was challenging squeeze everything in 2 megs lol.

  • @TheMohawkNinja
    @TheMohawkNinja Před 21 dnem +1

    2:22 Double exclamation mark, that's a new one for me. I had to look that one up to make sense of it since it seemed redundant.
    Basically converts an integer into a boolean by forcing it to be a 0 or 1. Certainly more elegant than a ternary.

    • @shr4pnel
      @shr4pnel Před 15 dny

      also known as a "double bang". but don't diss my ternarys!

  • @maciejk2
    @maciejk2 Před 22 dny +2

    very nice video!
    btw, its impressive how fast the vim is, how it allows for all of that stuff, so is there any easy tutorial how to setup it and learn? i never used it before, and i think that im missing something big. ive seen there are beautiful themes for it, but never got myself to really trying it out. would love to see instructions for windows or gnu/linux, even tho i currently only main windows :)

    • @nirlichtman
      @nirlichtman  Před 22 dny +1

      Check out my "Vim Tips" playlist for tutorials and tips. you can easily get Vim on windows using "winget install vim"

    • @maciejk2
      @maciejk2 Před 17 dny

      @@nirlichtman thank you :)

  • @ronalerquinigoagurto555
    @ronalerquinigoagurto555 Před 26 dny +3

    More vids on exploring the kernel source

  • @SayaZionGoldTeam
    @SayaZionGoldTeam Před 25 dny

    Perfect!

  • @CocolinoFan
    @CocolinoFan Před 26 dny

    Really cool.

  • @thinkingRN
    @thinkingRN Před 22 dny

    very interesting!

  • @clivethompson7831
    @clivethompson7831 Před 22 dny

    So neat

  • @markusTegelane
    @markusTegelane Před 16 dny

    Didn't know you could trigger SysRq by just pressing the key not holding it. I've always just held Alt+SysRq and while doing that pressing a letter to send the command and it has worked every time.

  • @ligmagiga
    @ligmagiga Před 23 dny

    The SysRq key on Linux is very similar to ‘System Call’ command from an anime called Sword Art Online. Pretty funny.

  • @kipchickensout
    @kipchickensout Před 24 dny

    that's so interesting!

  • @Con-np9yx
    @Con-np9yx Před 10 dny

    Would've loved to see you just completely remove the panic and then recompile Alpine.

  • @Son1cSeren1de
    @Son1cSeren1de Před 22 dny +1

    Fun fact: if you press Alt + Sysrq on Windows 10, 11 it opens Onedrive

  • @minefacex
    @minefacex Před 26 dny +1

    The SysRq is only active if configured to be.

  • @KingJellyfishII
    @KingJellyfishII Před 24 dny

    i panicked for a second thinking the sysrequest key combination would reboot your host until realising it was winsows...

  • @thatpolandboi6682
    @thatpolandboi6682 Před 26 dny +2

    I think it's pretty obvious what happenes, the computer just... forgets

  • @SgtRamen69
    @SgtRamen69 Před 12 dny

    Crazy how there's CPUs now with enough cache to fit Linux inside

  • @HugoIsThatGuy
    @HugoIsThatGuy Před 21 dnem

    I am wondering what would happen if you have no swap or very little swap

  • @Julian_H
    @Julian_H Před 26 dny +1

    Very informative and i dont mean this as a slight, but i find it a bit funny how you're using windows and edge to explain linux

  • @galactic_dust42
    @galactic_dust42 Před 26 dny

    Thank for making video where I cant actually remember stuff

  • @aleksamrda
    @aleksamrda Před 26 dny

    Cool video :)

  • @teldrah
    @teldrah Před 16 dny

    The last time you were able to boot Windows with 64 MBs of memory was in the 90s 😂

  • @dark-ghost4132
    @dark-ghost4132 Před 26 dny

    Nice ❤❤

  • @MKOFT3N
    @MKOFT3N Před 11 dny

    Could a commodore 64 run alpine linux?

  • @ehtrude
    @ehtrude Před 26 dny +3

    Great video, but I have to ask… you know so much about Linux, and you even use DWM, so why use windows as the base system? Is there something missing in Linux for you?

    • @gwtar_
      @gwtar_ Před 26 dny +1

      He play roblox

    • @nirlichtman
      @nirlichtman  Před 26 dny +3

      I address this question on my welcome page, but mainly since I like both

    • @ehtrude
      @ehtrude Před 26 dny +1

      @@nirlichtman oh, sorry, didn’t see it. Hmm, okay. My experience with windows has always been very buggy and unstable, but I guess it’s not like that for everyone. I do still prefer my OS to be open-source, and Linux has worked quite well for me. Interesting to see other opinions.

    • @rustylasagna
      @rustylasagna Před 26 dny

      @ehtrude In my case at least, as much as I would like to daily drive Linux, my university pretty much runs on Windows and requires it for a lot of applications they use. Microsoft Office is a pretty big component too, so for the time being I need to stick with it (especially in grad school). Windows 11 isn’t awful, but I really do hate that it updates automatically without the user’s permission.

  • @-ion
    @-ion Před 24 dny

    Judging from the stack trace, it ran out of memory unpacking the initrd. How about if you boot without one?

  • @DegradationDomain_stuff

    Cool trick.
    Which text editor do you use?

  • @ambush427
    @ambush427 Před 7 dny

    The linux logo already tell the fate for someone who fail to fix it lol

  • @vilian9185
    @vilian9185 Před 24 dny

    3:12 these magic keys help a lot lol

  • @courtneymertz4596
    @courtneymertz4596 Před 22 dny

    Linux is never picky about the lowest of system resources, provided that you don’t use something for too much power of course. Like a desktop environment for example.

  • @attilapal3786
    @attilapal3786 Před 26 dny

    Double like!

  • @bowedfloor
    @bowedfloor Před 11 dny

    you have 20M of buffer/cache space. you could easily trim this another 15M
    Disable your initrd, and init=/bin/bash.

  • @dv_xl
    @dv_xl Před 25 dny

    Cool

  • @typingcat
    @typingcat Před 26 dny

    My first Windows 95 PC worked just fine on 8MB of RAM. Nowadays, a simple text editor would consume more RAM than that. I wonder how Windows 95 could work on such small RAM.

    • @Alice_Fumo
      @Alice_Fumo Před 26 dny

      I had Notepad++ eating about 4 gigabytes a few days ago, so that puts our changing hardware demands really into perspective. Though it depends on what you're editing. Right now it's cruising on 2.4MB, which actually would fit your 8MB of RAM :)

    • @Knirin
      @Knirin Před 24 dny

      @@Alice_Fumo A lot of the “problem” is programs started trading RAM for performance several decades ago because RAM capacity and speed were both improving much faster than general IOPS and speed were improving.
      I also doubt the stability of the 8MB Windows 95 machine. Per my recollection Windows 95 needed around 32MB to work well. It was much less picky about processor specs than memory. I had a 66MHz 486DX2 with 48MB of RAM that ran office stuff just fine. It hated doing much else though.

  • @henryfleischer404
    @henryfleischer404 Před 22 dny

    Wow, that source code is really readable... I've gotta write some comments.

  • @ChandrashekarCN
    @ChandrashekarCN Před 25 dny

    💖💖💖💖

  • @klingoncowboy4
    @klingoncowboy4 Před 23 dny

    My dad loves to talk about running Slackware with less than 8mb back in the day... amazing now how 64 mb is the absulute minimum limit lol

  • @hyprodAx_
    @hyprodAx_ Před 9 dny

    As soon as I saw the cover of the video I thought:
    "here’s a video made by a noob to make views with simple stuff," and instead it’s much more than that.

  • @dimaryk11
    @dimaryk11 Před 22 dny

    the code looks really simple, I wonder if I can actually help develop linux

  • @madmax404
    @madmax404 Před 18 dny

    cool beans

  • @gerardzi7930
    @gerardzi7930 Před 26 dny +1

    Linux lite i don't know if more minimal system exist ?

    • @nirlichtman
      @nirlichtman  Před 26 dny

      I think Alpine would still be lighter than Linux Lite since I see that Linux Lite is based on Debian/Ubuntu and Alpine is def more minimal than them

    • @foxmoss_
      @foxmoss_ Před 26 dny +1

      @@nirlichtman how does it compare to damn small linux?

    • @jackdrophammer
      @jackdrophammer Před 26 dny +1

      ​@nirlichtman I'm not going to pretend I know this stuff but isn't it kinda weird how minimum base requirements have changed over the years? I saw a guy running gentoo linux with DWM in under 46MB and here we are having 64 MB base requirements for kernel to boot. Sauce: czcams.com/video/npR4vHLA890/video.html at 1:00.

  • @lucianchauvin8587
    @lucianchauvin8587 Před 22 dny

    how do you grep from vim like that it doesnt work for me:(

    • @nirlichtman
      @nirlichtman  Před 22 dny

      Check out my video about project search in Vim (on my playlist Vim tips), its simply adding a single line to the vimrc (no plugins required)

  • @user-kk4vy7uq5o
    @user-kk4vy7uq5o Před 26 dny +2

    My laptop keyboard doesn't have the sysrq

    • @nirlichtman
      @nirlichtman  Před 26 dny +2

      It should have, on some laptops you need to press Fn to activate the special keys (notice that SysRq and print screen are the same key so it may be that on your laptop it only says print screen)

    • @paulstelian97
      @paulstelian97 Před 26 dny +1

      @@nirlichtmanFor some it can be even weirder, like it can be some weird combo like Fn+S is SysRq on one laptop. You should find out what it is on your model.

    • @user-kk4vy7uq5o
      @user-kk4vy7uq5o Před 26 dny

      @@nirlichtman thanks

  • @010101110100
    @010101110100 Před 22 dny

    I’m still upset I couldn’t get Linux to boot on my 286 with 4mb ram

  • @SomeRandomPiggo
    @SomeRandomPiggo Před 24 dny

    64MB seems surprisingly high to me

  • @isheamongus811
    @isheamongus811 Před 5 dny

    Will not run below 8KB on real x86 hardware. (BIOS won't start). EDIT: This is normal behavior. Maybe some BIOSes will work fine.

  • @frecio231
    @frecio231 Před 26 dny

    What's the System Request key?

    • @workonfire
      @workonfire Před 26 dny

      Watch the video and you'll know

  • @arghyaprotimhalder5592

    Debian runs literally on anything
    1GB ram naaa 512 GB ram debian no issues I can run .

  • @werren894
    @werren894 Před 25 dny +1

    alpine is linux without GNU

    • @k2aj710
      @k2aj710 Před 25 dny

      Alpine is a tiny distro for containers / embedded.
      Lack of GNU is just an implementation detail.

  • @PedroBastozz
    @PedroBastozz Před 22 dny

    Bro it's literally glorified msdos. Why would it need decent amounts of ram?

    • @icantcomeupwithnames469
      @icantcomeupwithnames469 Před 22 dny +1

      Because "glorified" is doing a lot of heavy lifting there.

    • @PedroBastozz
      @PedroBastozz Před 22 dny

      @@icantcomeupwithnames469 it’s all cli. This should be able to run on a ibm pc from like 1987 or something.

    • @icantcomeupwithnames469
      @icantcomeupwithnames469 Před 21 dnem +1

      @@PedroBastozz Simply having a CLI says nothing about what you're I'ing with.

    • @PedroBastozz
      @PedroBastozz Před 21 dnem

      @@icantcomeupwithnames469 Having a cli is normal. You should definitely have a terminal app. Not having a GUI is just simply not an option. It wasn’t an option 20 years ago and it certainly isn’t today.

  • @xtan-yt
    @xtan-yt Před 25 dny

    Really cool 😮

  • @rohithkumarbandari
    @rohithkumarbandari Před 19 dny

    Bro why do you use windows even after knowing so much about linux ?

    • @nirlichtman
      @nirlichtman  Před 19 dny +1

      I find it more comfortable as my main OS

    • @rohithkumarbandari
      @rohithkumarbandari Před 19 dny

      @@nirlichtman Fair enough, great content though. How can we learn more about indepth stuff like this ?

  • @supercellex4D
    @supercellex4D Před 23 dny

    Yeah well DOS can boot in less than 640k, so Microsoft still won

    • @cassianomartin2699
      @cassianomartin2699 Před 22 dny

      Can't even compare DOS w/ Linux. DOS does 5% of a basic GNU/Linux kernel/userland environment, it does not even has it's own network stack.

    • @supercellex4D
      @supercellex4D Před 22 dny

      @@cassianomartin2699 Society has had a network stack for ages - it’s called the market
      Just get a floppy disk

    • @tigrankhachatryan6119
      @tigrankhachatryan6119 Před 22 dny

      DOS doesn't work with present-day software and hardware. So no.

  • @UltimatePerfection
    @UltimatePerfection Před 26 dny

    Now let's see what happens if you boot Windows 10 with low memory... oh right, it's completely useless.

    • @nirlichtman
      @nirlichtman  Před 26 dny +2

      I actually just tried Windows XP and to my surprise it booted and was somewhat usable with 32MB, but 16MB already caused a BSOD on boot.

    • @UltimatePerfection
      @UltimatePerfection Před 26 dny

      @@nirlichtman Yeah, but I am talking about modern (still supported) Windows.

  • @rasputindasilva858
    @rasputindasilva858 Před 26 dny +2

    Linux sucks.