UNIX – Getting Started

Published On: January 22nd, 2015|Last Updated: January 7th, 2023|Categories: UNIX & Linux|Total Views: 1720|Daily Views: 1|

What is UNIX?
UNIX is an Operating system which is mainly developed to run on any computing devices. Unix is multiuser and multitasking operating system since several users can access the system and can do the several tasks at same time.

UNIX History:
UNIX or Unix was developed in ~1960s at AT&T Bell Labs by a special team including Ken Thompson and Dennis Ritchi initially to run only programs. It was first developed to work only in command line interface and later it was updated to work in GUI (Graphical User Interface) format like Microsoft windows.
There are several variants and editions of UNIX released like LINUX, HP-UX, BSD, etc.

UNIX Architecture:
UNIX architecture is classified into four components:
1. Hardware
2. Kernel
3. Shell
4. Application Programs

UNIX - getting started

Hardware: It is managed by kernel and this is the hardware part of system.

Kernel: It is a heart of Unix operating system which will do various management tasks like file management, process management, network management, device management, memory management, etc.,

Shell: Shell is a command line interface which acting as a user interface between the user and the system. User will enter the command in terminal, shell acts as an interpreter here which interpret the user command and send it to the Kernel, where Kernel processes the commands and displays the output via shell terminal.

Application Programs: we can run all the application programs like DBMS, FTP, MAIL, etc.

System Log In:
Once the system is switched ON, you will be prompted to login in to the operating system.

Note: If you are an administrator, you will create the login id and password while installing the operating system. Or else you should contact the system administrator to get the appropriate credentials.
First user need to enter the login id in the below screen and press “ENTER”:

Login as:

Then user should enter the password for their login id. Password will be displayed in encrypted form as below.

Password: ********

Note: Both login id and password are case-sensitive.

Once your login id and password are validated, you could see the command line with ‘$’ dollar symbol.

Now user can type the commands and get the output. For example:

$ date
Thu Jan 22 00:56:37 EST 2015

Logout:
Once you done with your works, you can logout from the system to prevent unauthorized access.
Use command ‘logout’ or ‘exit’ to logout from the system.

$ logout

If you have any doubts or clarifications please comment below.

Leave A Comment