What is Unix: A Brief Introduction to Unix

Introduction to Unix Operating System:

Let’s start with Tutorial #1: ‘What is Unix’ in this series.

In this tutorial, you will be able to understand the basic concepts of operating systems, features of Unix, along with its Architecture.

=> Click here for the Complete Unix Tutorial series

_Introduction to Unix (1)

Unix Video #1:

What is Unix?

Unix and Unix-like operating systems are a family of computer operating systems that are derived from the original Unix system from Bell Labs.

Initial proprietary derivatives included the HP-UX and the SunOS systems. However, growing incompatibility between these systems led to the creation of interoperability standards like POSIX. Modern POSIX systems include Linux, its variants, and Mac OS.

Unix is the most powerful and popular multi-user and multi-tasking Operating System. The basic concepts of Unix originated in the Multics project of 1969. The Multics system was intended as a time-sharing system that would allow multiple users to simultaneously access a mainframe computer.

Ken Thompson, Dennis Ritchie, and others developed the basic building blocks of Unix including a hierarchical file system, i.e, the concepts of processes and a command-line interpreter for the PDP-7. From there, multiple generations of Unix were developed for various machines.

Growing incompatibility between these systems led to the creation of interoperability standards like POSIX and Single Unix Specification.

Unix programs are designed around some core philosophies that include requirements like single purpose, interoperable, and working with a standardized text interface. Unix systems are built around a core kernel that manages the system and the other processes.

Kernel subsystems may include process management, file management, memory management, network management, and others.

Salient Features of Unix

There are several prominent features of Unix, and a few among them are stated below:

  • It is a multi-user system where the same resources can be shared by different users.
  • It provides multi-tasking, wherein each user can execute many processes at the same time.
  • It was the first operating system that was written in a high-level language (C Language). This made it easy to port to other machines with minimum adaptations.
  • It provides a hierarchical file structure that allows easier access and maintenance of data.
  • Unix has built-in networking functions so that different users can easily exchange information.
  • Unix functionality can be extended through user programs built on a standard programming interface.

Unix Architecture

We will understand how user commands are executed in Unix. User commands are often entered on a command line interface that is provided by a ‘shell’. The shell is a program that reads the user commands, evaluates them, and then prints the result. For evaluating the command, the shell may execute other commands, or pass them to the ‘kernel’.

The kernel is the core of the operating system that directly interacts with the underlying hardware to provide a set of standard services.

The tutorial also covers:

  • What is the Operating system
  • History of Unix
  • Features of Unix
  • Unix Architecture

Our upcoming tutorial will give you a detailed explanation of Unix Commands!!

=> Click here for the Complete Unix Tutorial series

PREV Tutorial | NEXT Tutorial