SlideShare ist ein Scribd-Unternehmen logo
1 von 41
Day 1.
Unix Introduction.
Name of
Ananthi Murugesan
presentation
• Company name
Capgemini
Road Map

Unix Biography

Unix System Organization

Evolution of Unix

Kernel/Shell

What is Unix?
Why do I need to know Unix?

File Management

Login in Unix

Architecture of Unix.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix Biography

1964 joint project between AT&T Bell Labs, GE, and MIT to
develop a new OS
Goal : develop an OS that could provide computational
power, data storage and the ability to share data among
multiple users
Result: Multiplexed Information & Computer Service MULTICS.
Unix Biography

1969 Bell Labs withdraws from group, Two Bell Lab
scientists, Ken Thompson and Dennis Ritchie, continue
research.
At the same time Ken Thompson wrote a game “space
travel” in Fortran to run on GECOS OS
Thompson ported the game to a little used PDP-7 computer
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix Biography-PDP-7

In 1969, Ken Thompson wrote the first UNIX system in
assembly language on a PDP-7, then named Unics as a pun
on Multics

It’s as the operating system for Space Travel, a game
which required graphics to depict the motion of the
planets
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix History
Here’s Unix history
1969

1976

1978

1991

Creation by Ken
Thompson and
Denis Ritchie from
Bell Labs

Creation of
Apple

www.ananthim.wordpress.com

Creation of Linux
by Linus Torvalds
Split between
BSD and type V
Unix

Author :- Ananthi Murugasen
What is Unix
The low-level software which handles the interface to system
hardware (input/output devices, memory, file system, etc),
schedules tasks, and provides common core services such as a
basic user interface.
It’s portable, multi-tasking and multi-user operating system
Portable: runs on many different hardware architectures
(Intel x86, Motorola 680x0etc.).
Pre-emptive multi-tasking: several programs can run at the
same time (time slices, interrupts, and task switching.
Multi-user: many users can share the computer system at
the same time
www.ananthim.wordpress.com

Author :- Ananthi Murugasen
What is Unix – Other Features

Uses a simple, uniform file model which includes devices
and access to other services in a flexible, hierarchical file
system.
 Written in a high-level language (“C”) making it easy to
read, understand, change and port.
The command prompt is a simple user process, the Unix
shell, which is also a convenient job programming language.
Includes support for regular expressions which are
convenient for complex searching.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
What is Unix –Philosophy
Philosophy of Unix system

• Everything is a file
– Hard Drive, CDROM drive, CPU …
• Task segmentation
• A program must be portable
• Write code quickly and to share with the
community
• Correct bugs quickly

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix Features

Multi- user

Hierarchical file system
Multi tasking
Threads
Virtual memory
Built –in networking

Extensive set of utilities

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix Merits /Demerits

True multi-tasking

Not that User friendly

Flexible/Portable

Sleep learning curve

“Nice”
Programming Events

Not 100% compatible
with the Microsoft world.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Top ten points
why I need to use
Unix ??

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
# Unix is more flexible and can
be installed on many different
types of machines, including
main-frame computers,
supercomputers and microcomputers.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#2 – Scalability
• Unix is more stable and
does not go down as often as
Windows does, therefore requires
less administration and
maintenance.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#3 – security

• Unix has greater built-in security
and permissions features than
Windows.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#4 – Compatibility
Web sites designed and programmed

to be served under a UNIX-based
web server can easily be hosted on
a Windows server,
whereas the reverse is not always true.
This makes programming for
UNIX the better choice
www.ananthim.wordpress.com

Author :- Ananthi Murugasen
#5 – Stability

Servers running on UNIX enjoy
extremely high up-time and high
availability/reliability

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#6 – Performance

UNIX servers under high load
(which is what is important)
are superior to Windows

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#7 – Command line

• The command line will always
be an invaluable tool for
administration purposes.
Nothing will ever replace
favorite text-based editor

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
#8 – Software Updates

• software upgrades from Microsoft
often require the user to purchase
new or more hardware or
prerequisite software.
That is not the case with Unix.

www.ananthim.wordpress.com

Author :- Ananthi Murugasen
#9 – Price
• The mostly free or inexpensive
open-source operating systems,
such as Linux and BSD.

www.ananthim.wordpress.com

Author :- Ananthi Murugasen
#10 – Data security
Users are required to log in
before they can do anything.
Logging in restricts
unauthorised use, allows all files
created by a user to be
identified as belonging to them
and, if necessary, only visible to
that user

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix - Quiz

The BSD system is a different Unix system
MacOSX is not based on the Unix system
UNIX system is a multi-task system
UNIX system is a multi-user system

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix system Organization
Kernel
Hardware

Hardware

Shell
www.ananthim.wordpress.com

Tools and
Application
Author :- Ananthi Murugesan
Unix
Unix System follows a layered Approach
It has four layers
The innermost layer is the hardware layer
In the second layer, the kernel is placed.
The utilities and the other application programs
form the third layer
Fourth layer is the one with which the user
actually interacts.
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix – Kernel

Kernel is that part of the OS which directly makes
interface with the hardware system.
Factions:
Provides mechanism for creating and deleting
processes
Provides processor scheduling, memory and IO
management

Does interprocess communication.

www.ananthim.wordpress.com

Author :- Ananthi Murugasen
Unix – Shell
Shell
Whenever you login to a Unix system you are placed in
a shell program.
The shell's prompt is usually visible at the cursor's
position on your screen. To get your work done, you
enter commands at this prompt.
The shell is a command interpreter;.
It takes each command and passes it to the operating
system kernel to be acted upon.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Types of Shell
Bourne shell (sh)

Shell

C shell (csh)
Korn shell (ksh)

Kron Shell
Bournce Shell
C shell

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix - Shell
A Utility program that comes with the unix system.
Features of Shell are:

Interactive Processing
Background Processing
I/O Redirection
Pipes
Shell Scripts

Shell Variables
Programming Constructs
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix
Bourne Shell(sh) – This is the original shell of UNIX which
comes with every UNIX sytem and may be that is the
reason that it is so popular.It was written by Stephen
Bourne at Bell Labs in 1974
• C shell(csh) – It has a syntax that resembles that of the
highly popular C programming language (also developed at
Bell Labs), and thus it is sometimes preferred by
programmers.
Korn shell(ksh) – It is a superset of sh developed by David
Korn at Bell Labs in 1983. It contains many features of the
C shell as well, including a command historys
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
MS Windows Vs UNIX
C:

/

N:
sue
ollie

cdrom

floppy

users

local

dan

ollie

sue

dan
mail
exec
A:
D:
N:danexec
www.ananthim.wordpress.com

mail

exec

/users/dan/exec
Author :- Ananthi Murugesan
Unix

[1] Absolute location:
/users/dan/mail/my.doc

[2] Relative to the directory
“sue”
../dan/mail/my.doc

/

cdrom

floppy

users

local

dan

ollie

sue

[3] For Dan, relative to his
homespace:
~/mail/my.doc

[4] For everyone else, relative
to Dan’s homespace:

mail

exec

my.doc
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix - File Management

Unix uses a hierarchical file system with “/” as its root.
Every non-leaf node of the tree is called as a directory
file.

Every leaf node can either be a file or an empty directory

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix – CPU Scheduling

Unix uses “Round-Robin” scheduling to support its multiuser and time-sharing feature.
Round-Robin fashion of scheduling is considered to be
oldest,simplest and widely used algorithm.
Here, every process is given a time slice(10-100 millisec.)

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
What can UNIX do for you ?
Departmental E-mail
 World Wide Web
 Scientific Programming
1.FORTRAN
2.C/C++
3.Matlab
4.Maple
Text Processing

Plotting packages
1.Gnuplot
2.tecplot
www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix
Super User

Group 2

Group 1

Owner

Group
member

Group
member

www.ananthim.wordpress.com

others

others

others

Author :- Ananthi Murugasen
Unix -Log in

you will need to have a valid username and a password
Type your username at the login prompt
UNIX is case sensitive
When the password prompt appears, type in your
password.
Your password is never displayed on the screen as
a security measure

www.ananthim.wordpress.com

Author :- Ananthi Murugasen
Unix - Login screen

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix - How to change the passwords

passwd command
Old password: - enter your current password
New password: - enter your new password
Retype new password: - re-enter your new password

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix -Logging Off The System

– To logout enter the command logout or exit.
– If this does not work, press Ctrl-d.
– If you have a .logout file in your home directory, the system
will execute any commands contained there.

www.ananthim.wordpress.com

Author :- Ananthi Murugesan
Unix - Stop and Think

Do you have any questions ?

Catch me @ www.ananthim.wordpress.com

Weitere ähnliche Inhalte

Was ist angesagt? (20)

Linux introduction
Linux introductionLinux introduction
Linux introduction
 
Unix Shell Scripting
Unix Shell ScriptingUnix Shell Scripting
Unix Shell Scripting
 
UNIX Operating System
UNIX Operating SystemUNIX Operating System
UNIX Operating System
 
Linux architecture
Linux architectureLinux architecture
Linux architecture
 
Process scheduling linux
Process scheduling linuxProcess scheduling linux
Process scheduling linux
 
Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1) Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1)
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
 
Linux commands and file structure
Linux commands and file structureLinux commands and file structure
Linux commands and file structure
 
Linux presentation
Linux presentationLinux presentation
Linux presentation
 
UNIX Operating System ppt
UNIX Operating System pptUNIX Operating System ppt
UNIX Operating System ppt
 
Linux distributions
Linux    distributionsLinux    distributions
Linux distributions
 
Unix
UnixUnix
Unix
 
Linux file system
Linux file systemLinux file system
Linux file system
 
Linux file system
Linux file systemLinux file system
Linux file system
 
Linux kernel
Linux kernelLinux kernel
Linux kernel
 
Linux Internals - Interview essentials 4.0
Linux Internals - Interview essentials 4.0Linux Internals - Interview essentials 4.0
Linux Internals - Interview essentials 4.0
 
Linux programming lecture_notes
Linux programming lecture_notesLinux programming lecture_notes
Linux programming lecture_notes
 
Unix operating system architecture with file structure
Unix operating system architecture with file structure Unix operating system architecture with file structure
Unix operating system architecture with file structure
 
Linux basics
Linux basicsLinux basics
Linux basics
 
Linux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell ScriptingLinux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell Scripting
 

Andere mochten auch

Linux red hat overview and installation
Linux red hat overview and installationLinux red hat overview and installation
Linux red hat overview and installationdevenderbhati
 
Java interfaces & abstract classes
Java interfaces & abstract classesJava interfaces & abstract classes
Java interfaces & abstract classesShreyans Pathak
 
Amazing KDE (K Desktop Environment)
Amazing KDE (K Desktop Environment)Amazing KDE (K Desktop Environment)
Amazing KDE (K Desktop Environment)anandvaidya
 
Operating system (remuel)
Operating system (remuel)Operating system (remuel)
Operating system (remuel)Remuel Malinao
 
Comparison of windows linux and mac os
Comparison of windows linux and mac osComparison of windows linux and mac os
Comparison of windows linux and mac osAli Zar
 

Andere mochten auch (9)

Intro to linux
Intro to linuxIntro to linux
Intro to linux
 
Unix - Shell Scripts
Unix - Shell ScriptsUnix - Shell Scripts
Unix - Shell Scripts
 
Linux red hat overview and installation
Linux red hat overview and installationLinux red hat overview and installation
Linux red hat overview and installation
 
Unix - Filters/Editors
Unix - Filters/EditorsUnix - Filters/Editors
Unix - Filters/Editors
 
Java interfaces & abstract classes
Java interfaces & abstract classesJava interfaces & abstract classes
Java interfaces & abstract classes
 
File systems for Embedded Linux
File systems for Embedded LinuxFile systems for Embedded Linux
File systems for Embedded Linux
 
Amazing KDE (K Desktop Environment)
Amazing KDE (K Desktop Environment)Amazing KDE (K Desktop Environment)
Amazing KDE (K Desktop Environment)
 
Operating system (remuel)
Operating system (remuel)Operating system (remuel)
Operating system (remuel)
 
Comparison of windows linux and mac os
Comparison of windows linux and mac osComparison of windows linux and mac os
Comparison of windows linux and mac os
 

Ähnlich wie Unix Introduction

Unix Introduction
Unix IntroductionUnix Introduction
Unix IntroductionAnanthi
 
CHAPTER 1 INTRODUCTION TO UNIX.pptx
CHAPTER 1 INTRODUCTION TO UNIX.pptxCHAPTER 1 INTRODUCTION TO UNIX.pptx
CHAPTER 1 INTRODUCTION TO UNIX.pptxMahiDivya
 
Unix shell programming intro-part-1
Unix shell programming intro-part-1Unix shell programming intro-part-1
Unix shell programming intro-part-1Prachi Sasankar
 
Introduction to unix (1).pptx
Introduction to unix (1).pptxIntroduction to unix (1).pptx
Introduction to unix (1).pptxvirat834293
 
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya Jyothi
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya JyothiIntroduction to Unix operating system Chapter 1-PPT Mrs.Sowmya Jyothi
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya JyothiSowmya Jyothi
 
Intro tounix (1)
Intro tounix (1)Intro tounix (1)
Intro tounix (1)Raj Mirje
 
IntroToUnix.ppt.intro.to.linuxlinuxintroduction
IntroToUnix.ppt.intro.to.linuxlinuxintroductionIntroToUnix.ppt.intro.to.linuxlinuxintroduction
IntroToUnix.ppt.intro.to.linuxlinuxintroductionNagavelliMadhavi
 
Intro tounix
Intro tounixIntro tounix
Intro tounixdjprince
 
UNIT II-Programming in Linux
UNIT II-Programming in LinuxUNIT II-Programming in Linux
UNIT II-Programming in LinuxDr.YNM
 
LinuxOS-1 (1).ppt
LinuxOS-1 (1).pptLinuxOS-1 (1).ppt
LinuxOS-1 (1).pptSavitha74
 

Ähnlich wie Unix Introduction (20)

Unix Introduction
Unix IntroductionUnix Introduction
Unix Introduction
 
CHAPTER 1 INTRODUCTION TO UNIX.pptx
CHAPTER 1 INTRODUCTION TO UNIX.pptxCHAPTER 1 INTRODUCTION TO UNIX.pptx
CHAPTER 1 INTRODUCTION TO UNIX.pptx
 
Unix shell programming intro-part-1
Unix shell programming intro-part-1Unix shell programming intro-part-1
Unix shell programming intro-part-1
 
Introduction to unix
Introduction to unixIntroduction to unix
Introduction to unix
 
UNIX_module1.pptx
UNIX_module1.pptxUNIX_module1.pptx
UNIX_module1.pptx
 
Presentation1.pdf
Presentation1.pdfPresentation1.pdf
Presentation1.pdf
 
Introduction to unix (1).pptx
Introduction to unix (1).pptxIntroduction to unix (1).pptx
Introduction to unix (1).pptx
 
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya Jyothi
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya JyothiIntroduction to Unix operating system Chapter 1-PPT Mrs.Sowmya Jyothi
Introduction to Unix operating system Chapter 1-PPT Mrs.Sowmya Jyothi
 
Ch1-Unix.pptx
Ch1-Unix.pptxCh1-Unix.pptx
Ch1-Unix.pptx
 
Intro tounix (1)
Intro tounix (1)Intro tounix (1)
Intro tounix (1)
 
IntroToUnix.ppt
IntroToUnix.pptIntroToUnix.ppt
IntroToUnix.ppt
 
IntroToUnix.ppt.intro.to.linuxlinuxintroduction
IntroToUnix.ppt.intro.to.linuxlinuxintroductionIntroToUnix.ppt.intro.to.linuxlinuxintroduction
IntroToUnix.ppt.intro.to.linuxlinuxintroduction
 
Intro tounix
Intro tounixIntro tounix
Intro tounix
 
Intro tounix
Intro tounixIntro tounix
Intro tounix
 
UNIX_Module 1.pdf
UNIX_Module 1.pdfUNIX_Module 1.pdf
UNIX_Module 1.pdf
 
Unix case-study
Unix case-studyUnix case-study
Unix case-study
 
UNIT II-Programming in Linux
UNIT II-Programming in LinuxUNIT II-Programming in Linux
UNIT II-Programming in Linux
 
Spsl unit1
Spsl   unit1Spsl   unit1
Spsl unit1
 
LinuxOS-1 (1).ppt
LinuxOS-1 (1).pptLinuxOS-1 (1).ppt
LinuxOS-1 (1).ppt
 
Linux
LinuxLinux
Linux
 

Kürzlich hochgeladen

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 

Kürzlich hochgeladen (20)

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 

Unix Introduction

  • 1. Day 1. Unix Introduction. Name of Ananthi Murugesan presentation • Company name Capgemini
  • 2. Road Map Unix Biography Unix System Organization Evolution of Unix Kernel/Shell What is Unix? Why do I need to know Unix? File Management Login in Unix Architecture of Unix. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 3. Unix Biography 1964 joint project between AT&T Bell Labs, GE, and MIT to develop a new OS Goal : develop an OS that could provide computational power, data storage and the ability to share data among multiple users Result: Multiplexed Information & Computer Service MULTICS.
  • 4. Unix Biography 1969 Bell Labs withdraws from group, Two Bell Lab scientists, Ken Thompson and Dennis Ritchie, continue research. At the same time Ken Thompson wrote a game “space travel” in Fortran to run on GECOS OS Thompson ported the game to a little used PDP-7 computer www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 5. Unix Biography-PDP-7 In 1969, Ken Thompson wrote the first UNIX system in assembly language on a PDP-7, then named Unics as a pun on Multics It’s as the operating system for Space Travel, a game which required graphics to depict the motion of the planets www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 6. Unix History Here’s Unix history 1969 1976 1978 1991 Creation by Ken Thompson and Denis Ritchie from Bell Labs Creation of Apple www.ananthim.wordpress.com Creation of Linux by Linus Torvalds Split between BSD and type V Unix Author :- Ananthi Murugasen
  • 7. What is Unix The low-level software which handles the interface to system hardware (input/output devices, memory, file system, etc), schedules tasks, and provides common core services such as a basic user interface. It’s portable, multi-tasking and multi-user operating system Portable: runs on many different hardware architectures (Intel x86, Motorola 680x0etc.). Pre-emptive multi-tasking: several programs can run at the same time (time slices, interrupts, and task switching. Multi-user: many users can share the computer system at the same time www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 8. What is Unix – Other Features Uses a simple, uniform file model which includes devices and access to other services in a flexible, hierarchical file system.  Written in a high-level language (“C”) making it easy to read, understand, change and port. The command prompt is a simple user process, the Unix shell, which is also a convenient job programming language. Includes support for regular expressions which are convenient for complex searching. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 9. What is Unix –Philosophy Philosophy of Unix system • Everything is a file – Hard Drive, CDROM drive, CPU … • Task segmentation • A program must be portable • Write code quickly and to share with the community • Correct bugs quickly www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 10. Unix Features Multi- user Hierarchical file system Multi tasking Threads Virtual memory Built –in networking Extensive set of utilities www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 11. Unix Merits /Demerits True multi-tasking Not that User friendly Flexible/Portable Sleep learning curve “Nice” Programming Events Not 100% compatible with the Microsoft world. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 12. Top ten points why I need to use Unix ?? www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 13. # Unix is more flexible and can be installed on many different types of machines, including main-frame computers, supercomputers and microcomputers. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 14. #2 – Scalability • Unix is more stable and does not go down as often as Windows does, therefore requires less administration and maintenance. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 15. #3 – security • Unix has greater built-in security and permissions features than Windows. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 16. #4 – Compatibility Web sites designed and programmed to be served under a UNIX-based web server can easily be hosted on a Windows server, whereas the reverse is not always true. This makes programming for UNIX the better choice www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 17. #5 – Stability Servers running on UNIX enjoy extremely high up-time and high availability/reliability www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 18. #6 – Performance UNIX servers under high load (which is what is important) are superior to Windows www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 19. #7 – Command line • The command line will always be an invaluable tool for administration purposes. Nothing will ever replace favorite text-based editor www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 20. #8 – Software Updates • software upgrades from Microsoft often require the user to purchase new or more hardware or prerequisite software. That is not the case with Unix. www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 21. #9 – Price • The mostly free or inexpensive open-source operating systems, such as Linux and BSD. www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 22. #10 – Data security Users are required to log in before they can do anything. Logging in restricts unauthorised use, allows all files created by a user to be identified as belonging to them and, if necessary, only visible to that user www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 23. Unix - Quiz The BSD system is a different Unix system MacOSX is not based on the Unix system UNIX system is a multi-task system UNIX system is a multi-user system www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 25. Unix Unix System follows a layered Approach It has four layers The innermost layer is the hardware layer In the second layer, the kernel is placed. The utilities and the other application programs form the third layer Fourth layer is the one with which the user actually interacts. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 26. Unix – Kernel Kernel is that part of the OS which directly makes interface with the hardware system. Factions: Provides mechanism for creating and deleting processes Provides processor scheduling, memory and IO management Does interprocess communication. www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 27. Unix – Shell Shell Whenever you login to a Unix system you are placed in a shell program. The shell's prompt is usually visible at the cursor's position on your screen. To get your work done, you enter commands at this prompt. The shell is a command interpreter;. It takes each command and passes it to the operating system kernel to be acted upon. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 28. Types of Shell Bourne shell (sh) Shell C shell (csh) Korn shell (ksh) Kron Shell Bournce Shell C shell www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 29. Unix - Shell A Utility program that comes with the unix system. Features of Shell are: Interactive Processing Background Processing I/O Redirection Pipes Shell Scripts Shell Variables Programming Constructs www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 30. Unix Bourne Shell(sh) – This is the original shell of UNIX which comes with every UNIX sytem and may be that is the reason that it is so popular.It was written by Stephen Bourne at Bell Labs in 1974 • C shell(csh) – It has a syntax that resembles that of the highly popular C programming language (also developed at Bell Labs), and thus it is sometimes preferred by programmers. Korn shell(ksh) – It is a superset of sh developed by David Korn at Bell Labs in 1983. It contains many features of the C shell as well, including a command historys www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 31. MS Windows Vs UNIX C: / N: sue ollie cdrom floppy users local dan ollie sue dan mail exec A: D: N:danexec www.ananthim.wordpress.com mail exec /users/dan/exec Author :- Ananthi Murugesan
  • 32. Unix [1] Absolute location: /users/dan/mail/my.doc [2] Relative to the directory “sue” ../dan/mail/my.doc / cdrom floppy users local dan ollie sue [3] For Dan, relative to his homespace: ~/mail/my.doc [4] For everyone else, relative to Dan’s homespace: mail exec my.doc www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 33. Unix - File Management Unix uses a hierarchical file system with “/” as its root. Every non-leaf node of the tree is called as a directory file. Every leaf node can either be a file or an empty directory www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 34. Unix – CPU Scheduling Unix uses “Round-Robin” scheduling to support its multiuser and time-sharing feature. Round-Robin fashion of scheduling is considered to be oldest,simplest and widely used algorithm. Here, every process is given a time slice(10-100 millisec.) www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 35. What can UNIX do for you ? Departmental E-mail  World Wide Web  Scientific Programming 1.FORTRAN 2.C/C++ 3.Matlab 4.Maple Text Processing Plotting packages 1.Gnuplot 2.tecplot www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 36. Unix Super User Group 2 Group 1 Owner Group member Group member www.ananthim.wordpress.com others others others Author :- Ananthi Murugasen
  • 37. Unix -Log in you will need to have a valid username and a password Type your username at the login prompt UNIX is case sensitive When the password prompt appears, type in your password. Your password is never displayed on the screen as a security measure www.ananthim.wordpress.com Author :- Ananthi Murugasen
  • 38. Unix - Login screen www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 39. Unix - How to change the passwords passwd command Old password: - enter your current password New password: - enter your new password Retype new password: - re-enter your new password www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 40. Unix -Logging Off The System – To logout enter the command logout or exit. – If this does not work, press Ctrl-d. – If you have a .logout file in your home directory, the system will execute any commands contained there. www.ananthim.wordpress.com Author :- Ananthi Murugesan
  • 41. Unix - Stop and Think Do you have any questions ? Catch me @ www.ananthim.wordpress.com