Unix Kernel Architecture
#1

[attachment=5957]
Unix Kernel Architecture

Unix Kernel Architecture
The kernel runs the show, i.e. it manages all the operations in a Unix flavored
environment. The kernel architecture must support the primary Unix requirements. These
requirements fall in two categories namely, functions for process management and
functions for file management (files include device files). Process management entails
allocation of resources including CPU, memory, and offers services that processes may
need. The file management in itself involves handling all the files required by processes,
communication with device drives and regulating transmission of data to and from
peripherals. The kernel operation gives the user processes a feel of synchronous
operation, hiding all underlying asynchronism in peripheral and hardware operations (like
the time slicing by clock). In summary, we can say that the kernel handles the following
operations :
1. It is responsible for scheduling running of user and other processes.
2. It is responsible for allocating memory.
3. It is responsible for managing the swapping between memory and disk.
4. It is responsible for moving data to and from the peripherals.
5. it receives service requests from the processes and honors them.
All these services are provided by the kernel through a call to a system utility. As a result,
kernel by itself is rather a small program that just maintains enough data structures to
pass arguments, receive the results from a call and then pass them on to the calling
process. Most of the data structure is tables. The chore of management involves keeping
the tables updated. Implementing such a software architecture in actual lines of code
would be very small. The order of code for kernel is only 10000 lines of C and 1000 lines
of assembly code.
Kernel also aids in carrying out system generation which ensures that Unix is aware of all
the peripherals and resources in its environment. For instance, when a new disk is
attached, right from its formatting to mounting it within the file system is a part of system
generation.
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: unix kernel architecture ppt, kernel system, unix operating system architecture, ieee projects for cse on unix platform, seminar on unix operating system, rename the file in unix, unix based projects,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  UNIX Operating System seminar addict 1 3,203 11-12-2012, 01:32 PM
Last Post: seminar details
  Mobile Ad Hoc Networks (MANETs) Are Not A Fundamentally Flawed Architecture seminar details 1 1,406 16-10-2012, 01:41 PM
Last Post: seminar details
  A MANET Architecture Model seminar paper 1 1,220 16-10-2012, 01:41 PM
Last Post: seminar details
  DISTRIBUTED DATABASE ARCHITECTURE FOR GLOBAL ROAMING IN FUTURE MOBILE NETWORKS seminar details 0 986 08-06-2012, 05:22 PM
Last Post: seminar details
  The ARM Architecture seminar details 0 743 08-06-2012, 04:56 PM
Last Post: seminar details
  NEURAL NETWORK ARCHITECTURE FOR RECOGNITION OF RUNNING HANDWRITING project uploader 0 806 04-06-2012, 05:26 PM
Last Post: project uploader
  Intel 8086 architecture seminar paper 0 826 13-03-2012, 04:03 PM
Last Post: seminar paper
  Analysis of the Android Architecture project uploader 0 434 23-02-2012, 02:56 PM
Last Post: project uploader
  INSIDE THE LINUX KERNEL seminar paper 0 783 21-02-2012, 02:02 PM
Last Post: seminar paper
  PlanetLab Architecture seminar paper 0 646 11-02-2012, 03:05 PM
Last Post: seminar paper

Forum Jump: