top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Linux is kernel or OS? [CLOSED]

+2 votes
274 views

I am trying to understand whether linux is kernel or os?
From so many sites i have found that linux is just a kernel and Red-hat/Centos/Ubuntu are using Linux kernel and making their own OS.

But from linux.org i read that linux is an Operating System.So, i am confused what exactly Linux is?

And Why linux is always associated with GNU. Everytime i see GNU/Linux only instead of Linux.

Can anyone help?

This question has an answer at: linux is kernel or os?
posted Dec 9, 2015 by Chirag Gangdev

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
This has been discussed in detail http://tech.queryhome.com/83036/linux-is-kernel-or-os almost exact problem.

1 Answer

+2 votes

First of all we need clear about Kernel:
A kernel is the most important element of an operating system. For an OS to work, it needs a kernel. The task of the kernel is to handle hardware resources (memory allocation, disk access, device usage...). It sits in between the hardware and the software being executed.

An operating system is something that includes a kernel plus quite a few lower-level "applications" to allow you as a user to do useful stuff with your computer (think file manager, control panel and so on).

If I Strictly speak, Linux is not an operating system, it is a kernel. Although it is very common to call any Linux-based operating system as 'Linux'. GNU/Linux is the operating system that combines the Linux kernel and GNU software. GNU alone is not (quite) an operating system either because there is no functional kernel. The GNU project developed a kernel called HURD but it is not stable enough to make of GNU a complete OS.

What most people call “Linux” is often a “GNU/Linux” OS.
For example: Debian, Ubuntu or Fedora are GNU/Linux operating systems. Android, on the other hand, is an OS that is based on Linux (the kernel) but it is not a GNU/Linux OS... and nobody calls it Linux by the way.

answer Dec 9, 2015 by Amit Kumar Pandey
...