linux

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • askcq
    New Member
    • Mar 2007
    • 63

    linux

    iam new to linux...
    i want to know in detail about the kernal
    and how things work in linux

    let me know some materials or books for it ....
  • savanm
    New Member
    • Oct 2006
    • 85

    #2
    Hi,
    The kernel of UNIX is the hub of the operating system: it allocates time and memory to programs and handles the filestore and communications in response to system calls.
    As an illustration of the way that the shell and the kernel work together, suppose a user types rm myfile (which has the effect of removing the file myfile). The shell searches the filestore for the file containing the program rm, and then requests the kernel, through system calls, to execute the program rm on myfile. When the process rm myfile has finished running, the shell then returns the UNIX prompt % to the user, indicating that it is waiting for further commands.

    Comment

    • drhowarddrfine
      Recognized Expert Expert
      • Sep 2006
      • 7434

      #3
      The kernel of UNIX is the hub of the operating system:
      Unix is NOT in the kernel of Linux.
      If you want to learn more about Linux, Google is your friend and each distribution has their own documentation to read.

      Comment

      • mac11
        Contributor
        • Apr 2007
        • 256

        #4
        Download Linux Kernel Architecture Book for free. Functional and design specifications documents for Linux 2.4 kernel subsystems, services and the modules. This is a collaborative work by engineers in industry and in the open source community, with open peer review.

        Comment

        • svlsr2000
          Recognized Expert New Member
          • Feb 2007
          • 181

          #5
          You can also refer to linux kernel in a net shell and understanding linux kernel both by orielly.

          But i suggest you read some operatins systems concept before reading about linux kernel, this would give you good base.

          Comment

          • askcq
            New Member
            • Mar 2007
            • 63

            #6
            thanks all....

            Comment

            Working...