Unix – Linux CS3353 Ssystem Administration. OS The Operating System – Acts as the interface to all software, hardware, and users of a computer. – Requires.

Slides:



Advertisements
Similar presentations
OPERATING SYSTEM An operating system is a group of computer programs that coordinates all the activities among computer hardware devices. It is the first.
Advertisements

What is an operating system? Is it software?
A Guide to Unix Using Linux Fourth Edition
Chapter One The Essence of UNIX.
CS 497C – Introduction to UNIX Lecture 26: - The Process Chin-Chih Chang
Operating Systems: Software in the Background
CMPTR1 CHAPTER 3 COMPUTER SOFTWARE Application Software – The programs/software/apps that we run to do things like word processing, web browsing, and games.
CS 497C – Introduction to UNIX Lecture 3: Inside UNIX Chin-Chih Chang
Guide To UNIX Using Linux Third Edition
Unix Presentation. What is an Operating System An operating system (OS) is a program that allows you to interact with the computer -- all of the software.
The University of Akron Summit College Business Technology Department Computer Information Systems 2440: 145 Operating Systems Introduction to UNIX/Linux.
What is Unix Prepared by Dr. Bahjat Qazzaz. What is Unix UNIX is a computer operating system. An operating system is the program that – controls all the.
Linux Basics CS 302. Outline  What is Unix?  What is Linux?  Virtual Machine.
Linux Shells Dr. Michael L. Collard 1.
CST334 Unix & X Window System
Introduction to Unix/Linux Chapter One The Essence of UNIX.
Operating Systems.
CIS 191 – Lesson 2 System Administration. CIS 191 – Lesson 2 System Architecture Component Architecture –The OS provides the simple components from which.
Potential Unix/Linux Questions March 25, 2014 Dr. Bob Mathis.
Module 1 Introduction to UNIX/Linux
An Introduction to UNIX System --- Cosc513 Presentation n Instructor: Morteza Anvari n Author: Yonghong Pan n ID#: n Date: Jan.29, 2001.
CENT 305 Information Systems Security Linux Introduction.
Linux Un*x Overview Peter Norton’s Guide to Unix Running Linux (O’Reilly)
1 © 2001 John Urrutia. All rights reserved. Welcome to CIS 52 WELCOME WELCOME W E L C O M E.
CS 390 Unix Programming Summer Unix Programming - CS 3902 Course Details Online Information Please check.
CS 390 Unix Programming Environment Summer Suchindra Rengan - CS3902 Course Details Instructors Suchindra Rengan – ‘sachin’ ( Section 001)
UNIX/LINUX SHELLS.  “A Unix shell is a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and.
Operating System What is an Operating System? A program that acts as an intermediary between a user of a computer and the computer hardware. An operating.
Unix/Linux cs3353. The Shell The shell is a program that acts as the interface between the user and the kernel. –The shell is fully programmable and will.
© Prepared By: Razif Razali 1 TMK 265: UNIX SYSTEM CHAPTER ONE – UNIX PHILOSOPHY.
Computers & Operating Systems
Just Enough Unix, Chapter 1
Bridges To Computing General Information: This document was created for use in the "Bridges to Computing" project of Brooklyn College. You are invited.
Unix/Linux for beginners:
1 Lecture 1 Introduction & Getting Started COP 3353 Introduction to UNIX.
FTP Short for File Transfer Protocol, the protocol for exchanging files over the Internet.protocolfilesInternet works in the same way as HTTP for transferring.
UNIX Shell Dr. Tran, Van Hoai
UNIX Unit 1- Architecture of Unix - By Pratima.
System Administrator Responsible for? Install OS Network Configuration Security Configuration Patching Backup Performance Management Storage Management.
Basic UNIX Concepts. Why We Need an Operating System (OS) OS interacts with hardware and manages programs. A safe environment for programs to run is required.
Linux History C151 Multi-User Operating Systems. Open Source Programming Open source programming: 1983, Richard Stallman started the GNU Project (GNU.
Introduction to UNIX Karl Harrison September 2004.
System Administrator Responsible for? Install OS Network Configuration Security Configuration Patching Backup Performance Management Storage Management.
Introduction to UNIX CS465. What is UNIX? (1) UNIX is an Operating System (OS). An operating system is a control program that allocates the computer's.
Module 1 - Introduction to Linux. Users must log-in Linux is case sensitive File and Directories naming conventions (No spaces!) Files and Directories.
Chapter 1 Basic Concepts of Operating Systems Introduction Software A program is a sequence of instructions that enables the computer to carry.
PTA Linux Series Copyright Professional Training Academy, CSIS, University of Limerick, 2006 © Workshop I Introduction to Linux Professional Training Academy.
Shell ITEC400 Yukari Kitamura. What is shell? An interface between the user and OS A utility program to interact with the kernel A programming language.
Computer Software. Two Major Types of SW System SW Programs that generally perform the background tasks in a computer. These programs, many times, talk.
UNIX U.Y: 1435/1436 H Operating System Concept. What is an Operating System?  The operating system (OS) is the program which starts up when you turn.
Operating System Structure Lecture: - Operating System Concepts Lecturer: - Pooja Sharma Computer Science Department, Punjabi University, Patiala.
INTRODUCTION TO SHELL SCRIPTING By Byamukama Frank
Karl Harrison September 2004
Introduction to UNIX.
Operating System & Application Software
Unix Scripting Session 1 March 6, 2008.
Welcome to Linux Chap#1 Hanin Abdulrahman.
Chapter 1 Introduction to System Administration
Chapter 1 The Essence of UNIX and Linux
What is an Operating System?
Computer Software CS 107 Lecture 2 September 1, :53 PM.
An Introduction to UNIX System --- Cosc513 Presentation
Shell & Kernel Concepts in Operating System
Unix : Introduction and Commands
Linux Professor Sabol.
Welcome to Linux Chap#1 Hanin Abdulrahman.
Welcome to Linux Chap#1.
Introduction to Operating Systems
A very basic introduction
Presentation transcript:

Unix – Linux CS3353 Ssystem Administration

OS The Operating System – Acts as the interface to all software, hardware, and users of a computer. – Requires a file system for organizing files – Must maintain its viability to prevent other programs, hardware, users, etc, from impeding its operation. Unix and its variants will accomplish the above.

UNIX Consists of core software known as the kernel – The kernel acts to share resources of the system with all running processes. – A process is a collection of resources associated with a running program.

UNIX By 1973, it was a complete Written using the C program language. – Multi user – Multi task – Multi processor

UNIX Variants There are many variants of UNIX. – BSD (1977) – AT&T System V (1983) – Linux (1991, Linus Torlvalds, Helsinki Finland) – Mac OS X is a UNIX based variant (1999).

UNIX Multi-user – The user accesses the computer in an environment that is separated from other users sharing the computer’s resources. – Access is through a verification process known as logging-in: Enter a user-id and password. – The OS creates an environment known as the “shell” for the user after the login is complete.

The Unix/Linux Shell A command line interpreter The shell is tagged with the user’s ID. The user can have multiple independent shells running simultaneously.

Shell Types sh = Bourne shell csh = C-shell ksh = korn shell, an enhanced c-shell. bash = enhanced Bourne shell. The new standard for shell scripting.

The UNIX-Linux OS The Unix/Linux OS consists of: – The kernel – the main controlling program that is started at boot time. – Processes that support the kernel and all other activity – The File system – Utilities