@@CodePulse I have a problem with this when I do the last step “make build-x86_64” it says “make: *** No rule to make target ‘build-x86_64’. Stop.” The rest of it works but I just can’t get this last step please help.
10:02 for anyone curious, the timeout number is the number of seconds in the multiboot grub screen before it auto-boots into the default os and the default value is the os to boot into. So what the code does is tell grub to immediately boot into our os.
Hey Bro It seems that you are the only one who is Teaching us to create huge projects from scratch, bro i really appreciate your work and I've learn a lot from you! Thanks for your support bro! And I can't wait for the further videos!
Pls don't tell me you have given up on this series, this is exactly what I need man c'mon . You are doing an amazing job would love it if you finish this.
Makes sense, this is a complicated series than need a lot of effort to make and at the same time, people are not going to watch. Seeing the view difference between the 2 videos will show you what I'm talking about.... It's not just worth the effort. At the same time, I think that a wrong start has been made as this shows how to create just a kernel and not a whole operating system...
@@godnyx117 Ola !! c'est justement ce qu'on veut, on ai parfaitement au courant de la grandeur d'un projet d'os on veux certaines demarche plus ou moins complexe; donc voila on ne s'attend pas a construire un os complet ici, un moment ou un autre, on devra ce separer, mais on aura quand meme appris
Years ago I used MS-DOS debug utility to implement a tiny operating system that was created on paper. It booted and ran a command shell which indirectly made calls to other components such as the TTY and its own file system. The entire system lived on a floppy disk. If I remember the entire operating system was less than 1024 bytes but it worked albeit limited functionality was implemented; it was just a personal project to help me learn about the boot process, the master boot record, the kernel, and the file system. I was inspired by a book that I had read and it is still on one of my book shelves.
Hi, can you please give me roadmap, all i know currently is basics of c , python and core Java, how can I learn to create something like a operating system
Excellent series, please keep it going. Some setup help for people who want to type along. Docker: * Install Docker Desktop (Windows for me) * Install the VS Code extension * Ctrl+, for settings * enter "docker" * Under Run Interactive - click "Edit in settings.json" and enter the following. Remember to change your project source folder. * "docker.commands.runInteractive": "docker run --rm -it -v :/root/env myos-buildenv", * You can now right click on the docker images\myos-buildenv\latest and choose run interactive to correctly have your container using the project source folder QEMU: * add -L "C:\Program Files\qemu" to the command line argument. Not DO NOT add a trailing \ I found this necessary even when adding the qemu path to the system PATH environment variable. ie. qemu-system-x86_64.exe -cdrom .\dist\x86_64\kernel.iso -L "C:\Program Files\qemu" I hope this helps.
@@CodePulse any idea on how to create a kernel for my HP iPAQ glisten windows mobile phone to enable it boot android? Please help kolodanjuma@gmail.com
Note: That "docker run" command near the start doesn't work if VSCode is using PowerShell as the terminal. Switch to command prompt (click the plus button next to the dropdown list and if you're asked to choose a default terminal, choose Command.
4:31 small correction: the BIOS IS actually the First Thing that Starts in your machine, then that searches for executable Code in the so called Boot Sector of your hard Drive. Normally that ist where the bootloader IS located and the bootloader then Starts the Rest of the operating system.
Awesome video! Building an OS (and low-level programming in general) has been an interest of mine for years, but I've only ever dabbled in it. Thanks for making this! Looking forward to more in this series!
18 yrs back I wanted to build my own os and there was hardly any tut available online and the books were too complicated to understand anything... fast forwarding 2 decades I can see my need come true with less difficultly... Thanks
I've written several systems, and they were the most exciting experiences I ever had. I suggest every programmer to try it at least once. As shown here, it is extremely simple. 35 years ago, I had also to write a compiler and a linker, and everything else :-)
Thank you CodePulse for finally getting me to use Docker (had to do it on my laptop, because it won't work on my desktop; long story!) BUT it's quite easy to do all this in a WSL install of Ubuntu 20.04 LTS by adding the "Remote WSL Extension" for VS Code! The only thing you need to do first before starting the video is: "sudo apt install build-essentials". Then just put the "os-series" etc. folders under your "home/username" directory. I spoke too soon: You will also need to edit the Makefile since it uses "x86_64-elf-gcc" instead of only "gcc" and "x86_64-elf-ld" instead of only "ld" (or simply set up an alias for those).
Thanks for this. I've been doing research on CPUs and kernel level operation for a few months now, but I wasn't sure where to start. This helps clear up some things I was still not clear on.
Compile (verb): Convert (a program) into a machine-code or lower-level form in which the program can be executed. I think you're being too pedantic, by this definition it's still correct to talk about "compiling" assembly code.
Even though I am a web dev, I am always curious about creating os, working with C and assembly. The tutorial is well explained. You have earned a like my friend.
After watching this video I clearly saw a gap between guys like back/front-end web developers and people who really understand what the programming is all about.
I have not completed even first 2 minutes watching this video and i really don't know what lies ahead in this and the other subsequent videos. BUT I am feeling like i am already on top of the world ! The title itself is sooo crazy .. i am super excited to learn this ! THANK YOU VERY MUCH !
timeout=0 default=0 in grub means that it will select the first entry right away instead of showing the boot menu and letting you select an entry to boot.
I like how incredible vague this guy is and automatically expects to configure docker and doesnt give any paths what so ever. its like docker and this emulation is there and well figure out as we continue and copy and paste with a few changes of variables 10 outta 10 on making anyone completely oblivious
I didn't think it would be that difficult to install docker. I am teaching how to write an OS kernel, not how to install programs. The only configuration necessary is that you might need to add a shared drive, which I did show how to do in this video. Unfortunately the UI for that step has already changed, so my video is now outdated. That is exactly why I don't cover these details, because they are prone to change and make my videos outdated. If you have problems, you can always ask a question in the comment section. Otherwise you can just read the official docker documentation for the most up-to-date information.
Nice nice. I used your programming language tutorial to spin my own programming language project. I m sure this will be equally awesome. Thank you for this tutorial
This is not my construction site but I admire your work! Back then I did PC internal hardware programming, it was too hard and dry for me! Maybe this will result in new approaches for a truly modern operating system instead of millions of Linux derivatives. A completely reprogrammed operating system without the burden of backwards compatibility would be something!
For people having trouble in Windows.. Here is the code for docker env: Windows Powershell: docker run --rm -it -v "${pwd}:/root/env" myos-buildenv Windows CMD: docker run --rm -it -v "%cd%":/root/env myos-buildenv I had error with cmd so simply used powershell and worked fine. Also for those who have qemu-system-x86_64 is not recognized as the bla bla... You have to go This Pc > Properties > Advanced Settings > Environment... > Path (Edit) then add C:\Program Files\qemu to the path. Your problem is fixed. I hope this helps you stay safe! Edit: After adding the path, move it up to the first row. That is important!
sir please make a video on prerequisites and roadmap for how to make an OS! So much love and support to you. Thanks for free and quality education. love from INDIA
Just vibing here, it's 2am and i'm watching this like the man that creates home in the middle of the forest. Docker! Is it like duck, duck. Ok never mind
Like everyone else here, I enjoy watching this, but I don't really understand what is going on most of the time. Could you recommend some sources for written information if one would want to deep dive in this stuff?
The books of Andrew Tanenbaum. He created the minix os. His book on this explains every detail of os design. Linus Trovalds picked this one to make linux.
Did something like this on a 68000 processor way back in 1998. Multithreaded preemptive OS.. in machine language. During University days. Worst part, we had the build the 68000 computer from scratch first with ram/eprom/serial ports.. etc. These were the days before linux had kernel 0.8.
If you're looking for server hosting check out Vultr using my affiliate link below to support my channel and get $10 credit. I've been using their services for a while and they have great price/performance. www.vultr.com/?ref=8330534
When I try to run the first docker command, docker build buildenv -t pkos-buildenv, it says that the docker daemon is not running. How do I get that running? I'm new to C and Docker btw.
Hope there comes more Video on that! (if you have no motivation: Just imagine you go to class and every one fighting if Android or apple is better and then comes you with your own OS)
*Getting an error?*
If you are using linux or macos, use *$(pwd)* instead of *$pwd* at 3:02
srry i am on linux (ubuntu) but what's the command to do in ubuntu at 2:50?
Or just use capital letters, which is arguably more correct: $PWD
I am doing this on windows but I am still getting an error
@@finnrobinson674 Are you using the Windows syntax with the %cd% variable, on a Windows cmd command line prompt?
@@ropersonline no I’m using the $ sign
I don't understand a single fuck of what is going on but i like it
You and everybody else in this industry mate
same lol
I feel you man
hahhaha, so much funny
I’m learning assembly!
"So in here we're gonna have to do a few things. I don't even know what they do" - Literally every programmer ever.
😂😂😂
This was the one second of this video CodePulse felt like approximately 100% of his audience felt the whole time.
@@CodePulse I have a problem with this when I do the last step “make build-x86_64” it says “make: *** No rule to make target ‘build-x86_64’. Stop.” The rest of it works but I just can’t get this last step please help.
AGREED im a beginer and classes confuse the f outa me
Yup🤣🤣🤣
This is the kind of dopamine releasing undefiled programming content I've been looking for...this is programming bliss ...this is learning
He got arrested for distribution of bliss -- people were "dying" to see the next episode ...
10:02 for anyone curious, the timeout number is the number of seconds in the multiboot grub screen before it auto-boots into the default os and the default value is the os to boot into. So what the code does is tell grub to immediately boot into our os.
I am gonna love the episode 2 and btw don't give up on this series bc it's so cool
@YellowKiwi I dont understand any of what he said..
I have never been this excited in my life :D
Same
Same
Same
Same (although the 22 minutes of waiting for the docker stuffs to install was kinda boring)
Same
If you get a command not found error when running qemu, make sure you have it added to your path. "C:\Program Files\qemu" on Windows.
Hey Bro It seems that you are the only one who is Teaching us to create huge projects from scratch, bro i really appreciate your work and I've learn a lot from you! Thanks for your support bro!
And I can't wait for the further videos!
@SKUllMusic Thanks 😁
@@CodePulse When is the next video coming out?
Later in the course, could you give a tutorial on making a file system and a GUI for the os?
@@kingundead4310 In a week or two hopefully :)
Pls don't tell me you have given up on this series, this is exactly what I need man c'mon . You are doing an amazing job would love it if you finish this.
Take a level in google fu then grab some av software and finish it yourself.
Makes sense, this is a complicated series than need a lot of effort to make and at the same time, people are not going to watch.
Seeing the view difference between the 2 videos will show you what I'm talking about.... It's not just worth the effort. At the same time, I think that a wrong start has been made as this shows how to create just a kernel and not a whole operating system...
@@godnyx117 Ola !! c'est justement ce qu'on veut, on ai parfaitement au courant de la grandeur d'un projet d'os on veux certaines demarche plus ou moins complexe; donc voila on ne s'attend pas a construire un os complet ici, un moment ou un autre, on devra ce separer, mais on aura quand meme appris
@Alcryx I can only guess, lol!
@@godnyx117 nice pfp bro
Years ago I used MS-DOS debug utility to implement a tiny operating system that was created on paper. It booted and ran a command shell which indirectly made calls to other components such as the TTY and its own file system. The entire system lived on a floppy disk. If I remember the entire operating system was less than 1024 bytes but it worked albeit limited functionality was implemented; it was just a personal project to help me learn about the boot process, the master boot record, the kernel, and the file system. I was inspired by a book that I had read and it is still on one of my book shelves.
Hi, can you please give me roadmap, all i know currently is basics of c , python and core Java, how can I learn to create something like a operating system
@@Paramjit_purewal checkout the tutorial series OS Dev - S2.
@@0x007A that's looking really cool,btw should i learn assembly first ?
@@Paramjit_purewallearn hos operating systems work first
Excellent series, please keep it going.
Some setup help for people who want to type along.
Docker:
* Install Docker Desktop (Windows for me)
* Install the VS Code extension
* Ctrl+, for settings
* enter "docker"
* Under Run Interactive - click "Edit in settings.json" and enter the following. Remember to change your project source folder.
* "docker.commands.runInteractive": "docker run --rm -it -v :/root/env myos-buildenv",
* You can now right click on the docker images\myos-buildenv\latest and choose run interactive to correctly have your container using the project source folder
QEMU:
* add -L "C:\Program Files\qemu" to the command line argument. Not DO NOT add a trailing \
I found this necessary even when adding the qemu path to the system PATH environment variable.
ie. qemu-system-x86_64.exe -cdrom .\dist\x86_64\kernel.iso -L "C:\Program Files\qemu"
I hope this helps.
Thank you for sharing that!
This is so cool! It looks totally simple, but it is actually very hard to setup such an environment yourself. A lots of work. Nice job!
This is the best RUclips recommendation I get so far. Thank you for this 😃
😁😁😁
@@CodePulse any idea on how to create a kernel for my HP iPAQ glisten windows mobile phone to enable it boot android? Please help
kolodanjuma@gmail.com
Poncho has better OS DEV
Note: That "docker run" command near the start doesn't work if VSCode is using PowerShell as the terminal. Switch to command prompt (click the plus button next to the dropdown list and if you're asked to choose a default terminal, choose Command.
I ran the docker build buildenv -t command and it said docker didnt exist (this is in cmd btw)
Did you download docker
Replacing %cd% with ${PWD} also works to let you continue using powershell
@@fionnmcgovern545 Did you download and install docker? Also you might have to manually start docker. You might need to restart your PC too.
You can also keep using PowerShell using the command here if anyone wants to: github.com/davidcallanan/os-series/issues/38
4:31 small correction: the BIOS IS actually the First Thing that Starts in your machine, then that searches for executable Code in the so called Boot Sector of your hard Drive. Normally that ist where the bootloader IS located and the bootloader then Starts the Rest of the operating system.
Awesome video! Building an OS (and low-level programming in general) has been an interest of mine for years, but I've only ever dabbled in it. Thanks for making this! Looking forward to more in this series!
Clear cadence and exact concepts, very good to watch
This is really good timing, just 5 days ago I was looking for a tutorial on how to make an OS if only I saw this which was posted the day before
18 yrs back I wanted to build my own os and there was hardly any tut available online and the books were too complicated to understand anything... fast forwarding 2 decades I can see my need come true with less difficultly... Thanks
I've written several systems, and they were the most exciting experiences I ever had. I suggest every programmer to try it at least once. As shown here, it is extremely simple. 35 years ago, I had also to write a compiler and a linker, and everything else :-)
Founding fathers of the Programming world are people like your. My respect is limitless
Can you recommend me a way to get better at programming
@@null6482 How good are you? If you have mastered C/C++ then go for Assembly.
@@null6482 just write software lol. You'll get better overtime
I wake up on my birthday to see that codepulse has made a new video! Straight to computer it is.
Thank you CodePulse for finally getting me to use Docker (had to do it on my laptop, because it won't work on my desktop; long story!) BUT it's quite easy to do all this in a WSL install of Ubuntu 20.04 LTS by adding the "Remote WSL Extension" for VS Code! The only thing you need to do first before starting the video is: "sudo apt install build-essentials". Then just put the "os-series" etc. folders under your "home/username" directory. I spoke too soon: You will also need to edit the Makefile since it uses "x86_64-elf-gcc" instead of only "gcc" and "x86_64-elf-ld" instead of only "ld" (or simply set up an alias for those).
Thanks for this.
I've been doing research on CPUs and kernel level operation for a few months now, but I wasn't sure where to start.
This helps clear up some things I was still not clear on.
2:08 for the sake of correctness, you don't compile assembly code, you *_assemble assembly_* code, you compile a compiled language like C.
Compile (verb):
Convert (a program) into a machine-code or lower-level form in which the program can be executed.
I think you're being too pedantic, by this definition it's still correct to talk about "compiling" assembly code.
Even though I am a web dev, I am always curious about creating os, working with C and assembly. The tutorial is well explained. You have earned a like my friend.
9:56 : A real programmer 😲
So in here we have to do a few things, i don't even know what they do.
Rrlatable af 🤧
Nuts... pure magic made understandable! Wow.
I really like how you explain what it is you're typing and why.
this is the greatest tutorial on my life, really, KEEP IT UP SIR!!!!!
Thanks, will do!
Best RUclips suggestion ever!! I've been looking for this information for a long time and now I've found it!
Man i am sooooo excited! I was trying to find something on this topic for so long! Keep up the amazing videos!
Thanks man!
@@CodePulse when the next video comes out?
@@dominikjezik303 In a few days
sup zorby lmao
@@demodev7869 oh hi lol
After watching this video I clearly saw a gap between guys like back/front-end web developers and people who really understand what the programming is all about.
HELP! 14:40, when entering command “make build-x86_64” I get the error “make: *** No rule to make target ‘build-x86_64’. Stop”. What do I do
You need to do docker run --rm -it -v $(pwd):/root/env myos-env to get into your docker instead.
@@dodderss thanks
@@maybeoliv6235 For other operating systems: github.com/davidcallanan/os-series/issues/38
I have not completed even first 2 minutes watching this video and i really don't know what lies ahead in this and the other subsequent videos. BUT I am feeling like i am already on top of the world ! The title itself is sooo crazy .. i am super excited to learn this ! THANK YOU VERY MUCH !
I've been waiting so long for this!!!
Andrew Tanenbaum has a grand child in his works! Interesting series to watch.
timeout=0 default=0 in grub means that it will select the first entry right away instead of showing the boot menu and letting you select an entry to boot.
My mind is running wild with the possibilities.
Will definitely come back when I have a solid chunk of time to dedicate to this.
I have been looking for an Episode like this for so long thank you so much!
I like how incredible vague this guy is and automatically expects to configure docker and doesnt give any paths what so ever. its like docker and this emulation is there and well figure out as we continue and copy and paste with a few changes of variables 10 outta 10 on making anyone completely oblivious
I didn't think it would be that difficult to install docker. I am teaching how to write an OS kernel, not how to install programs.
The only configuration necessary is that you might need to add a shared drive, which I did show how to do in this video.
Unfortunately the UI for that step has already changed, so my video is now outdated.
That is exactly why I don't cover these details, because they are prone to change and make my videos outdated.
If you have problems, you can always ask a question in the comment section. Otherwise you can just read the official docker documentation for the most up-to-date information.
set timeout and set default have to do with the UI that grub presents. timeout is the amount of time before grub automatically boots into default.
Now thinking about it, was that guy joking or he really didn't Know 😅
@@Paramjit_purewal I didn't, but now that I do it's obvious.
The algorithm understood the assignment... Exactly what I wanted to get my hands on during this lockdown period... 💪🏿
What are good alternatives for the Docker-Image? The one used is not working for me
Nice nice. I used your programming language tutorial to spin my own programming language project. I m sure this will be equally awesome. Thank you for this tutorial
Thank you :)
Finally. 2020 is not that bad😁
Ya
😁 Let me know if the video is too complicated or too simple!
It's not that complicated😁 Thank you 🤟 ❤️
I waited for a year for this series, I am so excited!!!
Great! :D
Please don't stop like most RUclipsrs do amidst the tutorial series. When can we expect part 2?
In a few months.
This is not my construction site but I admire your work! Back then I did PC internal hardware programming, it was too hard and dry for me!
Maybe this will result in new approaches for a truly modern operating system instead of millions of Linux derivatives.
A completely reprogrammed operating system without the burden of backwards compatibility would be something!
YES KING SHOW THE WORLD HOW SMART YOU ARE SHARE YOUR KNOWLEDGE
♥
wow he actually noticed me :o :D
pog moment
Hello
@@CodePulse HI
Hello again
@@CodePulse hello, more video bro
For people having trouble in Windows..
Here is the code for docker env:
Windows Powershell: docker run --rm -it -v "${pwd}:/root/env" myos-buildenv
Windows CMD: docker run --rm -it -v "%cd%":/root/env myos-buildenv
I had error with cmd so simply used powershell and worked fine.
Also for those who have qemu-system-x86_64 is not recognized as the bla bla... You have to go This Pc > Properties > Advanced Settings > Environment... > Path (Edit) then add C:\Program Files\qemu to the path. Your problem is fixed. I hope this helps you stay safe!
Edit: After adding the path, move it up to the first row. That is important!
Yeah! SUPER excited for this!! 😍😍
Great! Let me know if the video is too complicated or if I am explaining too much
@@CodePulse Great Your explanation is too good.. KEEP IT UP! 😍😍👍
@@CodePulse But I will be more excited if you have created this OS using C++
@@ansh6848 Hmmm, I always could use C++, but I don't think it's necessary. I prefer C when working this low-level.
sir please make a video on prerequisites and roadmap for how to make an OS! So much love and support to you. Thanks for free and quality education. love from INDIA
Just vibing here, it's 2am and i'm watching this like the man that creates home in the middle of the forest. Docker! Is it like duck, duck. Ok never mind
YES! I've been wanting to do something like this for weeks now, this video is a great starting point thanks!
Why am I watching this, I just learned to display "Hello World"
I've been into web development for more than a year and as a full stack web developer I can tell you I can't understand a single line he's writing lol
Goals people, goals!
Pr0
@@brhh figures considering os development is well os development
@@brhh That's because webshits don't understand anything
Feck yeah! At last perfect step-by-step OS dev video tutorial.... almost perfect, no step how to get Docker running 2:36
Hey had the same problem you got to open virtualisation sorry if I'm late
Like everyone else here, I enjoy watching this, but I don't really understand what is going on most of the time. Could you recommend some sources for written information if one would want to deep dive in this stuff?
There's a good few links in the description you can have a look at
The books of Andrew Tanenbaum. He created the minix os. His book on this explains every detail of os design. Linus Trovalds picked this one to make linux.
Did something like this on a 68000 processor way back in 1998. Multithreaded preemptive OS.. in machine language. During University days. Worst part, we had the build the 68000 computer from scratch first with ram/eprom/serial ports.. etc. These were the days before linux had kernel 0.8.
Wow, this is going to be awesome!! I'm interested in C stuff and I'm so glad you are making an OS tutorial!! Will this work in Ubuntu?
Should work on any OS since I'm using docker.
@@CodePulse Well I am getting errors when I build the docker, and how did you simply make the terminal in VS Code start with "$"
@@JackMCGamerAnimations What are the errors? On windows you can use "prompt $$" command to do that, I'm not sure if you can do this on Ubuntu.
@@JackMCGamerAnimations You can just run those commands in Terminal (CTRL + ALT + T)
If anyone is having errors with building, try use one of these commands when entering docker environment: github.com/davidcallanan/os-series/issues/38
🤯 amazing video, waiting for part 2!!
It is just a matter of time when this dude overtakes every operating system lmao
Haha, that's my dream!
CodePulse lol
@@lordmoonowl8650 NUL
whatt ! a OS programming tutorial on RUclips 😲
gawd or wot 🔥
tbh excited to the c/c++ part gonna be more interesting
still interesting tho
:D
😏
Wow youtube recommended just what I needed, thanks man please make more videos!
More to come soon!
This is amazing!. A programmer dream coming true hehe.
Keep up the good work plss. :)
Wowowo I don't even have the CS IT nor EE Background yet this throbs me, straight into the weekend playlist.
Help it gives me No rule to make target 'build-x86_64'. Stop. error lpease help :(
The same for me, but only when building through Ubuntu
Change $pwd to $PWD in the command for entering the docker container. I got it wrong in the video. github.com/davidcallanan/os-series/issues/38
I have one word for this video “magic!”
Cool
This proves that to learn anything a programmer will definitely start with print hello, world.
Great video btw
If you're looking for server hosting check out Vultr using my affiliate link below to support my channel and get $10 credit. I've been using their services for a while and they have great price/performance.
www.vultr.com/?ref=8330534
I used to do lua scripting but I got used to c++ bc of u. thx!
So if this is a new kernel this is not based on linux kernel and then it means that we can't run linux programms on it right ?
Hello, I have an old HP ipac glisten windows phone. I want to put android but I need to get its kernel to make it boot android. Where do I start?
did u notice my 2nd comment?
@@penguinpolaronyoutube5887 I. Could not find the comment
finally a channel that forced me to turn off the add block, so deserved
Wow thanks :) I didn't know ad block still worked on RUclips
@@CodePulsei cant wait for next episodes man, will you continue?
and also please make and episode for describing x86_64 instructions
Exactly what I was looking for, you should put bdos and bios in the hashtags to enable finding this easier
My brain's got Bigger just by watching the video. MARVELOUS
EXCITATION LEVEL 100, iamgoingtomakemyownOS !
This is awesome! I will be looking forward for more!
I cannot express how useful your channel is
Awesome video, a great starting point for those wanting to learn low level programming
Aswome video! Hope next episode will be out very soon.
this is so cool, gonna watch and implement along with you
This seems amazing to me. I can finally learn how a computer actually works!
Very humble and some great content, thank you and keep it up
Very good work! I will be checking out the second part soon.
When I try to run the first docker command, docker build buildenv -t pkos-buildenv, it says that the docker daemon is not running. How do I get that running? I'm new to C and Docker btw.
If you are on Windows just search for Docker in the start menu to start it. (Note: it might take a few minutes to start up)
Sir, I didn't know i could feel such a euphoric feeling without taking drugs... I'm glad i found this channel
“Turty-two bit memory”. Could listen to your voice all day long!
Hahahahaa 😂😂
nice bro, cant wait for this series xD
I'm getting an error from GRUB saying the multiboot header was not found.
After years of longing for this.. finally my brain cells are excited 😆
This is really helpfull ! Please consider this series
Interesting! I am setting up a Docker instance in my home lab and this will be a fun project to try
This is highly ambitious. Love it!
CodePlus is just any programming channel *but way cooler*
Like name another channel that shows how to make a goddamn kernel
I'm glad it showed up in my recommendation
Some videos are really made for recommending. THIS IS THE ONE !
Thanks youtube algorithm :)
I will never understand anything in this video but still liked it.
Hope there comes more Video on that! (if you have no motivation: Just imagine you go to class and every one fighting if Android or apple is better and then comes you with your own OS)
Finally, I can replace Windows, Linux and Macos with my own OS. As we all know, home made is better that industrial products.
I want to sue RUclips for not recommending me this video in last 6 months.
For some reason, the commas look different in my VS Code than the ones in yours. Mine seem to be plain text. Do you know why?