Welcome to the Linux Foundation Forum!

Perfect language to learn?

I'm wondering what programming language can i for someone who doesn't know anything about programming languages. I'm want to make a operating system based off of linux. I know there is alot of coding involved and messing with it fry my hard drive. I just wanna know what i should learn to so i can do this.

Comments

  • mfillpot
    mfillpot Posts: 2,177
    The Linux kernel itself is the potentially problematic piece of software, if you are attempting kernel programming on kernel modules then you can risk damaging hardware. Most kernel modules and drivers are developed in C or C++, so it wish to learn kernel programming those are a must.

    As for developing an OS or distributions based on the Linux kernel, very little programming knowledge is really necessary. To build and OS from the kernel is only to select the applications to install on top of the kernel, but it you wish to setup some type of custom programs for your OS then C++ would most likely make it easy enough.

    However you can build Linux based programs using perl, python, C, C++, java, etc...
  • ben
    ben Posts: 134
    Start with a real example, you must focus on something practical or a specific task you want to achieve, please let the Linux kernel development in a corner for a while, I'm sure you'll provide good patches to it in the next few years but at least you need to focus in basic tasks before scavenging the kernel.
    The perfect programming language doesn't exist, there're a lot of them, everyone does specific things better than others, you may apply some of them in a particular field and they're good options for that field. For web programming there're for example Python, PHP, Java, Perl; for kernel development C is one of the best and so on. The same language you've learnt to achieve specific goals may suck if you apply it to another task (PHP for kernel development sucks, same as C for accounting apps).
    First of all: decide what you want to do, than choose your preferred language to achieve that particular task; at the beginning try to do something simple, kernel development may follow later.

    Ben
  • Thanks man
  • Hope you got most valuable suggestions from already other users.

    But C/C++ apart, if you want to build everyday applications in a Linux system (I mean apps. here are the user-space apps.),
    then my suggestion is learn PHP and use PHP. It is best simple extremely quick and get you job done immediately.

    PHP is not suited for long time running apps. for example daemons. So if you have a large app. if it is daemon, again you need use C/C++ for that purpose. PHP is a scripting language but 200-times better than bash programs.

    Any CLI based user-space apps you can use C/C++ or Java or PHP or PERL and so on.

    So in this context PHP can be used.

    Also second advantage is that with the same PHP you can even write web-apps, dynamic HTML pages and so on.

    So it is extremely versatile !
  • The perfect language is Assembly Language. :-) :-)
    but it's not portable.

    The language you want to learn is C.

    After that you can learn some of the other languages.

    Wayne Sallee
    Wayne@WayneSallee.com
  • Here is my suggestions.

    FYI, I had been earlier systems and networking software developer, so I myself is a C/C++ guy.

    But still here are my suggestions for you and the sequence too:

    PHP (scripting language) --> first be an expert in writing programs.
    Do not waste time writing software in a language like C, where everything is mostly done manually and also via pointers.

    Then you can learn eventually C/c++. If you want to be a systems developer.
    Else learn Java if you want to write platform independent applications. Plus also GUI apps.

    That is it.

Categories

Upcoming Training