What Happens When Booting Linux with Low Memory

  Рет қаралды 60,733

Nir Lichtman

Nir Lichtman

Ай бұрын

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...

Пікірлер: 166
@taldmd
@taldmd Ай бұрын
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 Ай бұрын
Bloat.
@Tart0p0mme78
@Tart0p0mme78 Ай бұрын
Compile your own kernel then
@Diamonddrake
@Diamonddrake Ай бұрын
You can still run Linux with less memory than this, but not with all the kernel modules enabled
@rian0xFFF
@rian0xFFF Ай бұрын
security
@Mmouse_
@Mmouse_ Ай бұрын
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.
@Problematist
@Problematist Ай бұрын
I love the "Found nothing?!?!" message in the kernel
@GnomeEU
@GnomeEU Ай бұрын
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 Ай бұрын
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 Ай бұрын
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 Ай бұрын
⁠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 Ай бұрын
@@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 Ай бұрын
@@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
@realityveil6151
@realityveil6151 Ай бұрын
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.
@dev.rahulgurjar
@dev.rahulgurjar Ай бұрын
Please, start a series on the OS basics.How it actually works, from scratch.
@eduardoroth8207
@eduardoroth8207 Ай бұрын
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 Ай бұрын
I like the idea that sysrqs are just you telling the kernel "I messed up, help."
@MeriaDuck
@MeriaDuck Ай бұрын
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 Ай бұрын
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 Ай бұрын
@@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 Ай бұрын
​​@@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 Ай бұрын
@@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 Ай бұрын
@@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
@SyphistPrime
@SyphistPrime Ай бұрын
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.
@wrathofainz
@wrathofainz Ай бұрын
"Kernel panic" is hilarious to me for some reason. Insert "panik!" Meme here
@_defined
@_defined Ай бұрын
The kernel actually "panics", because it has hit something critical, just like us humans. When we did something critically wrong, we panic.
@justinbasinger7728
@justinbasinger7728 Ай бұрын
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 Ай бұрын
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 Ай бұрын
One of the few channels I turned notifications on, awesome Linux content!
@bobsock8718
@bobsock8718 Ай бұрын
I honestly don't know why, but seeing you use windows to record this video feels like a betrayal XD
@motoochhotoochintoo8406
@motoochhotoochintoo8406 Ай бұрын
Yes lol
@LostieTrekieTechie
@LostieTrekieTechie Ай бұрын
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 Ай бұрын
@@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 Ай бұрын
Windows is fine, but I got triggered when I saw Edge 😅
@dj.yacine
@dj.yacine Ай бұрын
Always high quality content 👌
@valentin-catalin1859
@valentin-catalin1859 Ай бұрын
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.
@joshuahudson2170
@joshuahudson2170 Ай бұрын
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.
@wirytiox1577
@wirytiox1577 Ай бұрын
Thank you for explaining the acronyms for people that is not full into the subject is extreamly usefull ❤
@quintencabo
@quintencabo Ай бұрын
How cool thanks for teaching about the sys request
@maximood-tired
@maximood-tired Ай бұрын
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)
@justinnamilee
@justinnamilee Ай бұрын
Neat! And the SysRq commands are _very_ useful when fooling around with custom kernel builds and you screw something up...
@Jp-ue8xz
@Jp-ue8xz Ай бұрын
Damn oveer a decade on linux, but today I finally learned what the sysreq key is good for lmao, good stuff!
@sir_enuf
@sir_enuf Ай бұрын
Love your content.
@whamer100
@whamer100 Ай бұрын
i remember trying out alpine once for a CTF game, and i was just amazed at how everything just worked with so little memory
@x4exr
@x4exr Ай бұрын
Great video!
@zootsuitpenguin
@zootsuitpenguin Ай бұрын
Great info thanks!!
@EdwardChan.999
@EdwardChan.999 Ай бұрын
I don't know why but this is very entertaining!
@maciejk2
@maciejk2 Ай бұрын
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 Ай бұрын
Check out my "Vim Tips" playlist for tutorials and tips. you can easily get Vim on windows using "winget install vim"
@maciejk2
@maciejk2 Ай бұрын
@@nirlichtman thank you :)
@DIYTechRepairs
@DIYTechRepairs Ай бұрын
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.
@cassianomartin2699
@cassianomartin2699 Ай бұрын
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.
@DanelonNicolas
@DanelonNicolas Ай бұрын
I love it. just love it. can't believe that key is for that. awesome 👍🏻 😎
@TheMohawkNinja
@TheMohawkNinja Ай бұрын
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 Ай бұрын
also known as a "double bang". but don't diss my ternarys!
@markzuckerbread1865
@markzuckerbread1865 Ай бұрын
This should be an exercise in OS courses in universities, nice way to show what happens on a deadlock.
@ronalerquinigoagurto555
@ronalerquinigoagurto555 Ай бұрын
More vids on exploring the kernel source
@Aragubas
@Aragubas Ай бұрын
😮 wow did not know about the sysrq key
@HugoIsThatGuy
@HugoIsThatGuy Ай бұрын
I am wondering what would happen if you have no swap or very little swap
@minefacex
@minefacex Ай бұрын
The SysRq is only active if configured to be.
@maximood-tired
@maximood-tired Ай бұрын
very interesting!
@-ion
@-ion Ай бұрын
Judging from the stack trace, it ran out of memory unpacking the initrd. How about if you boot without one?
@CocolinoFan
@CocolinoFan Ай бұрын
Really cool.
@markusTegelane
@markusTegelane Ай бұрын
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 Ай бұрын
The SysRq key on Linux is very similar to ‘System Call’ command from an anime called Sword Art Online. Pretty funny.
@SayaZionGoldTeam
@SayaZionGoldTeam Ай бұрын
Perfect!
@weedsoldier.
@weedsoldier. Ай бұрын
I think it's pretty obvious what happenes, the computer just... forgets
@MKOFT3N
@MKOFT3N Ай бұрын
Could a commodore 64 run alpine linux?
@DegradationDomain_stuff
@DegradationDomain_stuff Ай бұрын
Cool trick. Which text editor do you use?
@nirlichtman
@nirlichtman Ай бұрын
Vim
@DegradationDomain_stuff
@DegradationDomain_stuff Ай бұрын
@@nirlichtman wow, you're absolute pro at it :)
@clivethompson7831
@clivethompson7831 Ай бұрын
So neat
@Julian_H
@Julian_H Ай бұрын
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
@turolretar
@turolretar Ай бұрын
That’s hilarious
@kipchickensout
@kipchickensout Ай бұрын
that's so interesting!
@ehtrude
@ehtrude Ай бұрын
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?
@anastasiadddd
@anastasiadddd Ай бұрын
He play roblox
@nirlichtman
@nirlichtman Ай бұрын
I address this question on my welcome page, but mainly since I like both
@ehtrude
@ehtrude Ай бұрын
@@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 Ай бұрын
@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.
@aleksamrda
@aleksamrda Ай бұрын
Cool video :)
@galactic_dust42
@galactic_dust42 Ай бұрын
Thank for making video where I cant actually remember stuff
@Son1cSeren1de
@Son1cSeren1de Ай бұрын
Fun fact: if you press Alt + Sysrq on Windows 10, 11 it opens Onedrive
@SgtRamen69
@SgtRamen69 Ай бұрын
Crazy how there's CPUs now with enough cache to fit Linux inside
@Con-np9yx
@Con-np9yx Ай бұрын
Would've loved to see you just completely remove the panic and then recompile Alpine.
@KingJellyfishII
@KingJellyfishII Ай бұрын
i panicked for a second thinking the sysrequest key combination would reboot your host until realising it was winsows...
@lucianchauvin8587
@lucianchauvin8587 Ай бұрын
how do you grep from vim like that it doesnt work for me:(
@nirlichtman
@nirlichtman Ай бұрын
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)
@vilian9185
@vilian9185 Ай бұрын
3:12 these magic keys help a lot lol
@courtneymertz4596
@courtneymertz4596 Ай бұрын
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.
@dark-ghost4132
@dark-ghost4132 Ай бұрын
Nice ❤❤
@typingcat
@typingcat Ай бұрын
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 Ай бұрын
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 Ай бұрын
@@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.
@teldrah
@teldrah Ай бұрын
The last time you were able to boot Windows with 64 MBs of memory was in the 90s 😂
@gerardzi7930
@gerardzi7930 Ай бұрын
Linux lite i don't know if more minimal system exist ?
@nirlichtman
@nirlichtman Ай бұрын
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_ Ай бұрын
@@nirlichtman how does it compare to damn small linux?
@dimaryk11
@dimaryk11 Ай бұрын
the code looks really simple, I wonder if I can actually help develop linux
@dv_xl
@dv_xl Ай бұрын
Cool
@ambush427
@ambush427 Ай бұрын
The linux logo already tell the fate for someone who fail to fix it lol
@ChandrashekarCN
@ChandrashekarCN Ай бұрын
💖💖💖💖
@frecio231
@frecio231 Ай бұрын
What's the System Request key?
@workonfire
@workonfire Ай бұрын
Watch the video and you'll know
@attilapal3786
@attilapal3786 Ай бұрын
Double like!
@010101110100
@010101110100 Ай бұрын
I’m still upset I couldn’t get Linux to boot on my 286 with 4mb ram
@henryfleischer404
@henryfleischer404 Ай бұрын
Wow, that source code is really readable... I've gotta write some comments.
@madmax404
@madmax404 Ай бұрын
cool beans
@klingoncowboy4
@klingoncowboy4 Ай бұрын
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
@user-kk4vy7uq5o
@user-kk4vy7uq5o Ай бұрын
My laptop keyboard doesn't have the sysrq
@nirlichtman
@nirlichtman Ай бұрын
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 Ай бұрын
@@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 Ай бұрын
@@nirlichtman thanks
@bowedfloor
@bowedfloor Ай бұрын
you have 20M of buffer/cache space. you could easily trim this another 15M Disable your initrd, and init=/bin/bash.
@SomeRandomPiggo
@SomeRandomPiggo Ай бұрын
64MB seems surprisingly high to me
@hyprodAx_
@hyprodAx_ Ай бұрын
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.
@isheamongus811
@isheamongus811 Ай бұрын
Will not run below 8KB on real x86 hardware. (BIOS won't start). EDIT: This is normal behavior. Maybe some BIOSes will work fine.
@werren894
@werren894 Ай бұрын
alpine is linux without GNU
@k2aj710
@k2aj710 Ай бұрын
Alpine is a tiny distro for containers / embedded. Lack of GNU is just an implementation detail.
@arghyaprotimhalder5592
@arghyaprotimhalder5592 Ай бұрын
Debian runs literally on anything 1GB ram naaa 512 GB ram debian no issues I can run .
@PedroBastozz
@PedroBastozz Ай бұрын
Bro it's literally glorified msdos. Why would it need decent amounts of ram?
@icantcomeupwithnames469
@icantcomeupwithnames469 Ай бұрын
Because "glorified" is doing a lot of heavy lifting there.
@PedroBastozz
@PedroBastozz Ай бұрын
@@icantcomeupwithnames469 it’s all cli. This should be able to run on a ibm pc from like 1987 or something.
@icantcomeupwithnames469
@icantcomeupwithnames469 Ай бұрын
@@PedroBastozz Simply having a CLI says nothing about what you're I'ing with.
@PedroBastozz
@PedroBastozz Ай бұрын
@@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.
@rohithkumarbandari
@rohithkumarbandari Ай бұрын
Bro why do you use windows even after knowing so much about linux ?
@nirlichtman
@nirlichtman Ай бұрын
I find it more comfortable as my main OS
@rohithkumarbandari
@rohithkumarbandari Ай бұрын
@@nirlichtman Fair enough, great content though. How can we learn more about indepth stuff like this ?
@supercellex4D
@supercellex4D Ай бұрын
Yeah well DOS can boot in less than 640k, so Microsoft still won
@cassianomartin2699
@cassianomartin2699 Ай бұрын
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 Ай бұрын
@@cassianomartin2699 Society has had a network stack for ages - it’s called the market Just get a floppy disk
@tigrankhachatryan6119
@tigrankhachatryan6119 Ай бұрын
DOS doesn't work with present-day software and hardware. So no.
@xtan-yt
@xtan-yt Ай бұрын
Really cool 😮
@UltimatePerfection
@UltimatePerfection Ай бұрын
Now let's see what happens if you boot Windows 10 with low memory... oh right, it's completely useless.
@nirlichtman
@nirlichtman Ай бұрын
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 Ай бұрын
@@nirlichtman Yeah, but I am talking about modern (still supported) Windows.
@rasputindasilva858
@rasputindasilva858 Ай бұрын
Linux sucks.
@mrkubax10
@mrkubax10 Ай бұрын
Just like you
@shlokbhakta2893
@shlokbhakta2893 Ай бұрын
Skill issue lol
@Liphi
@Liphi Ай бұрын
fr, too bloated
@xtan-yt
@xtan-yt Ай бұрын
Skill issue
@cassianomartin2699
@cassianomartin2699 Ай бұрын
Skill issues
What Happens When Linux Runs Out of Memory?
2:54
Nir Lichtman
Рет қаралды 53 М.
Diving into Windows Keyboard Driver
10:29
Nir Lichtman
Рет қаралды 45 М.
1❤️#thankyou #shorts
00:21
あみか部
Рет қаралды 16 МЛН
Making a Very Minimal Windows Executable in C
7:48
Nir Lichtman
Рет қаралды 83 М.
Become a shell wizard in ~12 mins
12:25
CODE IS EVERYTHING
Рет қаралды 214 М.
Exploring How Linux Boots with GDB
6:21
Nir Lichtman
Рет қаралды 15 М.
Compilers, How They Work, And Writing Them From Scratch
23:53
Adam McDaniel
Рет қаралды 30 М.
98% Cloud Cost Saved By Writing Our Own Database
21:45
ThePrimeTime
Рет қаралды 293 М.
But, what is Virtual Memory?
20:11
Tech With Nikola
Рет қаралды 198 М.
Forget WiFi! This Wireless Method is WAY Better?
12:14
GreatScott!
Рет қаралды 417 М.
Diving into Windows XP Pinball Code
5:56
Nir Lichtman
Рет қаралды 7 М.
The cloud is over-engineered and overpriced (no music)
14:39
Tom Delalande
Рет қаралды 385 М.
Screwing Up Linux Kernel Keyboard Driver
6:33
Nir Lichtman
Рет қаралды 24 М.
cool watercooled mobile phone radiator #tech #cooler #ytfeed
0:14
Stark Edition
Рет қаралды 8 МЛН
#miniphone
0:16
Miniphone
Рет қаралды 1,3 МЛН
5 НЕЛЕГАЛЬНЫХ гаджетов, за которые вас посадят
0:59
Кибер Андерсон
Рет қаралды 1,4 МЛН