Operating System: Programming Lab-Iv
Operating System: Programming Lab-Iv
Submitted By
A Report on
“Unix Operating System”
In partial fulfilment of the requirement
BACHELOR OF TECHNOLOGY
In
COMPUTER ENGINEERING
Under the Guidance of
Dr. S.S.Dhotre
Preface
I have made this report file on the topic UNIX Operating System; I have tried my best to
elucidate all the relevant detail to the topic to be included in the report. While in the beginning I
have tried to give a general view about this topic.
My efforts and wholehearted co-corporation of each and everyone has ended on a successful
note. I express my sincere gratitude to Dr. S.S. Dhotre Ma’am who assisting me throughout
the prepration of this topic.
I thank for providing me the reinforcement, confidence and most importantly the track for the
topic whenever I needed it.
1
ABHINAV ARORA
ROLL- 09
Contents
1. History of UNIX
2. What is UNIX
3. Commands
4. Memory Management
5. Interrupts
7. Applications
8. References
2
ABHINAV ARORA
ROLL- 09
History of UNIX
1970s
In the 1970s Brian Kernighan coined the project name Unics as a play on Multics,
(Multiplexed Information and Computing Service). Unics could eventually support multiple
simultaneous users, and it was renamed Unix
1980s
AT&T licensed UNIX System III, based largely on Version 7, for commercial use, the first
version launching in 1982. This also included support for the VAX. AT&T continued to issue
licenses for older Unix versions. To end the confusion between all its differing internal versions,
AT&T combined them into UNIX System V Release 1. This introduced a few features such as
the vi editor and curses from the Berkeley Software Distribution of Unix developed at the
University of California, Berkeley. This also included support for the Western Electric 3B series
of machines.
2000s
In 2000, SCO sold its entire UNIX business and assets to Caldera Systems, which later on
changed its name to The SCO Group.
The dot-com bubble (2001–2003) led to significant consolidation of versions of Unix. Of the
many commercial variants of Unix that were born in the 1980s, only Solaris, HP-UX, and AIX
were still doing relatively well in the market, though SGI's IRIX persisted for quite some time.
Of these, Solaris had the largest market share in 200
3
ABHINAV ARORA
ROLL- 09
What is UNIX
* The UNIX Operating System (OS) is a large program (mostly coded in C) that turns the
computer into a useable machine.
* The Open Group, an industry standards consortium, owns the UNIX trademark. Only
systems fully compliant with and certified according to the Single UNIX Specification
are qualified to use the trademark; others might be called Unix system-like or Unix-like,
although the Open Group disapproves[1] of this term. However, the term Unix is often
used informally to denote any operating system that closely resembles the trademarked
system.
* During the late 1970s and early 1980s, the influence of Unix in academic circles led to
large-scale adoption of Unix (particularly of the BSD variant, originating from the
University of California, Berkeley) by commercial startups, the most notable of which are
Solaris, HP-UX and AIX, as well as Darwin, which forms the core set of components
upon which Apple's Mac OS X, Apple TV, and iOS are based.[2][3] Among all variants of
Unix, the most widely used are Linux[citation needed], which is used to power data centers,
desktops, mobile phones, and embedded devices such as routers, set-top boxes or e-book
readers. Today, in addition to certified Unix systems such as those already mentioned,
Unix-like operating systems such as MINIX, Linux, Android, and BSD descendants
(FreeBSD, NetBSD, OpenBSD, and DragonFly BSD) are commonly encountered. The
term traditional Unix may be used to describe an operating system that has the
characteristics of either Version 7 Unix or UNIX System V.
4
ABHINAV ARORA
ROLL- 09
Commands
Directory commands
File manipulation
cp Copy a file
rm Remove a file
Display commands
Process commands
5
ABHINAV ARORA
ROLL- 09
Pathnames
* A pathname is a sequence of directory names (separated by /’s) which identifies the
location of a directory.
– absolute pathnames
– relative pathname
Absolute Pathnames
* The sequence of directory names between the top of the tree (the root) and the directory
of interest.
* For example:
/bin
/etc/terminfo
/export/user/home/ad
/export/user/home/s3910120/proj1
Relative Pathnames
* The sequence of directory names below the directory where you are now to the directory
of interest.
6
ABHINAV ARORA
ROLL- 09
Memory Management
UNIX Memory Management Policies
* Swapping
– Easy to implement
* Demand Paging
– Greater flexibility
Swapping
* It maintains free space of the swap device in an in-core table, called map
* The kernel treats each unit of the swap map as group of disk blocks
Demand Paging
* Locality
* When a process accesses a page that is not part of its working set, it incurs a page fault.
* The kernel suspends the execution of the process until it reads the page into memory and
makes it accessible to the process
7
ABHINAV ARORA
ROLL- 09
Interrupt
When a process terminates abnormally it usually tries to send a signal indicating what went
wrong. C programs (and UNIX) can trap these for diagnostics. Also user specified
communication can take place in this way.
Signals are software generated interrupts that are sent to a process when a event happens. Each
signal has a default action which is one of the following:
received
Each signal defined by the system falls into one of five classes:
Hardware conditions
2 Software conditions
3 Input/output notification
4 Process control
5 Resource control
8
ABHINAV ARORA
ROLL- 09
lots of software
networking capability
easy to program
Applications
Storage Consultancy
* Identify inefficiencies with your current backup and recovery environment that may be
costing you time and money.
* Ensure your backup and recovery architecture meets your changing production
environment and SLAs.
* Configure and optimize all aspects of your backup and recovery environment.
9
ABHINAV ARORA
ROLL- 09
* Assisting clients in aspects of deploying J2EE applications and connecting to back end
resources.
10
ABHINAV ARORA
ROLL- 09
References
[1] Unix.org
[2 ]http://marketshare.hitslink.com/operating-system-market-
share.aspx?qprid=8&qpcustomd=0
[3]http://www.techhelp/preview/SystemTechnology/SystemTechnology.html#//apple_ref/doc/uid/
TP40001067-CH207-BCICAIFJ
[4] www.studymafia.org
11