What is UNIX?
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgu3j9HbIwcVEcsiHjphZ6vOH426DlG4033B9NPRcdhbW6EiAOsK4MLFROa98kyr8mY_rUE8nJludeE5hkTj-GHhfsxn-Bd6BsDR6oBkv2wJrREEGUB42ow6oKcgc-WRwo3S1sgBfc64I4/s1600/250px-Logo.png)
Types of UNIX :-
There are many different versions of UNIX, although they share common
similarities. The most popular varieties of UNIX are Sun Solaris,
GNU/Linux, and MacOS X.
Here in the School, we use Solaris on our servers and workstations, and Fedora Linux on the servers and desktop PCs.The UNIX operating system:-
The UNIX operating system is made up of three parts; the kernel, the shell
and the programs.
The kernel:
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.