• 0

Learning C (Basically for working with Kernals and everything really comple


Question

What is the best book or site where I could learn every aspect of "C"? I've decided next summer that I want to live a little more custom and I want to restructure the way I work. I'm a quick, but thorough person, and I'd like to work with the Linux Kernal from scratch.

Recommended Posts

  • 0

well C alone isnt really gonna help you much if you're dabling with kernels. sure,you can understand the syntax of the source code, but you wont understand what its actually doing. you need way more knowledge before you can tackle that area.

you'd need to know

-assembly language

-cpu architecture,like the registers,memory,interrupts,opcodes,MMU,caches,etc..

-how each component of an operating system works

-how the linux kernel works

and a whole bunch of other stuff.

really you're in for alot of work. you will be reading alot of books and manuals. i'm talking about years and years of learning before you can get to this level. you cant just read books and jump into things. you need to start writing code, start debugging code. it all comes from experience like everyone said.

i was exactly like you when i began learning programming. i was going to do alot of things. and then i realized what i was in for.

  • 0

I'm guessing many of you know or don't know about Codecademy & TutsPlus? I'm studying at both places for JavaScript, Python, Ruby, Objective-C, and many others. And I pretty much have enough patience to have all the intake to understand the differences of each languages. I'm not new to this, I just needed some books and such to get a better understanding, heck I've already started reading C / C++ Primer Plus (5th edition) because I also need to learn C and Objective C for Mobile App development.

Like I said, I'm just trying to be experimental. I've been loving tech since I was little, and I will always love & continue to study what I don't know about tech.

I'm even obsessed with technology that doesn't exist. :shiftyninja:

  • 0

how each component of an operating system works

Good point you need to know the big picture of how a operating system is designed before you build the key component of one.

Doing a quick google search, a quickier route than trying to learn assembly would be taking a look at this:

http://cosmos.codeplex.com/

I haven't used it before but since your trying something ambitious might as well do it in C#.

Im learning JavaScript, Python, Ruby, Objective-C, and many others

That's not good to learn a whole bunch of different languages at once, your not going to retain anything and more than likely you'll just burn yourself out. Focus on one language preferably C/C++/C# and than learning any other language is just a matter of picking up the syntax. Anyone can learn syntax, don't focus too much on that, focus instead on the core concepts of programming and getting something working.

C / C++ Primer Plus (5th edition)

Don't just sit there and copy examples out of book, that's a complete waste of time. I've taught many individuals how to program, and the best way to do it is to only use those books as a reference. Instead come up with something that you want to make, and look up how to do that.

Here is a situation that I'm currently facing that kinda pertains to this, our scripting guys at the studio I work at were having problems coding scripts because obviously they have no way to debug it. So I thought hey i'll write a custom debug engine plugin for Visual Studio. I wasted three days and a Microsoft Support Incident to figure out everything was 100% right, but it kept telling me custom DE wasn't installed. I was like WTF, it took a guy in the Visual Studio division a couple days to figure out the only thing I had to was launch visual studio with the /setup switch :/.

The moral of the story is even if know what your doing stupid things can come up that will discourage you and make you want to quit; I probably would have moved on to something else if I didn't have a MSDN support incident I could use. There isn't any self help guides, or really much other material on Kernel development out there because its usually done by guys that know what to do and what to look for if they need help.

  • 0

I'm not doing them all at once, I'm doing courses 1 by 1 and then moving on to the next language unless I've messed up on a few and that's when I do the whole course all over again until I've got it right.

I don't like to copy code out of a book. Of course I'm going to make my own, all I really wanted was references.

For learning just C. I won't be able to learn it all just yet until I've built up my office. Basically I'm trying to slowly learn it until next summer.

  • 0

moving on to the next language

Why are you moving on to another language? Especially since half of those you mentioned aren't going to help you at all in Kernel development. Stick with ONE maybe two languages at most, become a pro in the syntax, than become a pro in logic. Once you accomplish those two things going to another language is extremely easy.

Listen it looks like your changing some of your points to match what you think we want to hear...we don't care what you do lol. Just take it from someone who's heard the "I'm an awesome guy I can pick up programming by reading all this random crap without applying it anything" over and over again. If your already preficiant in syntax now do something practical. Put down the books, get your ass off of google and download UDK. Now I personally dislike Unreal for a lot of reasons, but my dislikes are mostly on the licensee end doing stuff you won't care enough to do.

Why would I be telling you to make a game when you don't have any goals related to game development?

When teaching programming I find its easier to get someone going when they say can come up with a project, and set milestones/goals for how to get it done. When you start coding each goal you will realize you have no idea whats your doing. So than you do research and you learn how to teach yourself, and you can see on the screen each goal getting accomplished. This teaches logic because your teaching youself.

To whoever mentioned going to college for a computer science degree, if you do pursue this one route there is one reason why I and other employers won't hire new college graduates...they can't figure **** out for themselves. Colleges spoon feed everything to you, and you don't understand how to get your ass on google and search around to figure out whatever it is your doing. This is why I strongly recommend doing the above, once you complete two or three projects with this method I promise you, you will be decently profient in programming. From there you can apprieciate what you want to do now and if its worth it.

  • 0

Everyone when they first start programming usually ask ambisous questions like this

I didn't. I wrote a "hello world", then moved on, through books (as there was not web resource for me back then) to connecting to a local database, to distributing on floppy. I had no lofty goals - I knew what I wanted to do, set myself landmarks to achieve and did.

  • 0

Also, OP... You say you want to write a custom OS by programming with the kernel...

Then when you talk about a custom OS you mention Longhorn (in context of its look and feel).

Please detail what you believe you mean by "custom OS"...

  • 0

As far as learning the language and some basic computer science goes, then K&R's The C Programming Language Second Edition is the bible. You don't have to read the entire book from front to back, but it's an excellent primer if you do. I use it as a reference regularly. In addition to linux man pages and web information of course.

If contributing to the Linux kernel project is your aspiration or desire, then it's easy enough to start submitting small patches to fix bugs, then build up to larger things. I'd recommend taking a look at https://bugzilla.kernel.org/ and see if there's anything you're interested in doing there.

This topic is now closed to further replies.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      231
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!